惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(gateway): bound transcription relay session expiry · ...
steipete · 2026-05-31 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -67,6 +67,7 @@ function expectTalkEventFields(

6767
6868

describe("talk transcription gateway relay", () => {

6969

afterEach(() => {

70+

vi.useRealTimers();

7071

clearTalkTranscriptionRelaySessionsForTest();

7172

});

7273

@@ -229,6 +230,37 @@ describe("talk transcription gateway relay", () => {

229230

expect(provider.createSession).not.toHaveBeenCalled();

230231

});

231232
233+

it("rejects session creation when transcription expiry would exceed Date range", () => {

234+

vi.useFakeTimers();

235+

vi.setSystemTime(new Date(8_640_000_000_000_000));

236+

const sttSession = {

237+

connect: vi.fn(async () => {}),

238+

sendAudio: vi.fn(),

239+

close: vi.fn(),

240+

isConnected: vi.fn(() => true),

241+

};

242+

const provider: RealtimeTranscriptionProviderPlugin = {

243+

id: "stt-test",

244+

label: "STT Test",

245+

isConfigured: () => true,

246+

createSession: vi.fn(() => sttSession),

247+

};

248+

const context = {

249+

getRuntimeConfig: () => ({}),

250+

broadcastToConnIds: vi.fn(),

251+

} as never;

252+
253+

expect(() =>

254+

createTalkTranscriptionRelaySession({

255+

context,

256+

connId: "conn-1",

257+

provider,

258+

providerConfig: {},

259+

}),

260+

).toThrow("Transcription relay session expiry is outside the supported Date range");

261+

expect(provider.createSession).not.toHaveBeenCalled();

262+

});

263+
232264

it("cancels an active transcription turn and closes the provider session", async () => {

233265

let sttRequest: RealtimeTranscriptionSessionCreateRequest | undefined;

234266

const sttSession = {

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,11 @@

11

import { randomUUID } from "node:crypto";

22

import type { RealtimeTranscriptionProviderPlugin } from "../plugins/types.js";

33

import type { RealtimeTranscriptionProviderConfig } from "../realtime-transcription/provider-types.js";

4-

import { parseFiniteNumber as readFiniteNumber } from "../shared/number-coercion.js";

4+

import {

5+

asDateTimestampMs,

6+

parseFiniteNumber as readFiniteNumber,

7+

resolveExpiresAtMsFromDurationMs,

8+

} from "../shared/number-coercion.js";

59

import { recordTalkObservabilityEvent } from "../talk/observability.js";

610

import {

711

type TalkEvent,

@@ -177,8 +181,13 @@ function closeTranscriptionSession(

177181

}

178182
179183

function pruneExpiredTranscriptionSessions(nowMs = Date.now()): void {

184+

const validNowMs = asDateTimestampMs(nowMs);

185+

if (validNowMs === undefined) {

186+

return;

187+

}

180188

for (const session of transcriptionSessions.values()) {

181-

if (nowMs > session.expiresAtMs) {

189+

const expiresAtMs = asDateTimestampMs(session.expiresAtMs);

190+

if (expiresAtMs === undefined || validNowMs > expiresAtMs) {

182191

closeTranscriptionSession(session, "completed");

183192

}

184193

}

@@ -210,7 +219,10 @@ export function createTalkTranscriptionRelaySession(

210219

enforceTranscriptionSessionLimits(params.connId);

211220

assertRelayInputAudioConfig(params.providerConfig);

212221

const transcriptionSessionId = randomUUID();

213-

const expiresAtMs = Date.now() + TRANSCRIPTION_SESSION_TTL_MS;

222+

const expiresAtMs = resolveExpiresAtMsFromDurationMs(TRANSCRIPTION_SESSION_TTL_MS);

223+

if (expiresAtMs === undefined) {

224+

throw new Error("Transcription relay session expiry is outside the supported Date range");

225+

}

214226

const talk = createTalkSessionController(

215227

{

216228

sessionId: transcriptionSessionId,

@@ -346,7 +358,15 @@ function getTranscriptionSession(

346358

connId: string,

347359

): TranscriptionRelaySession {

348360

const session = transcriptionSessions.get(transcriptionSessionId);

349-

if (!session || session.connId !== connId || Date.now() > session.expiresAtMs) {

361+

const nowMs = asDateTimestampMs(Date.now());

362+

const expiresAtMs = session ? asDateTimestampMs(session.expiresAtMs) : undefined;

363+

if (

364+

!session ||

365+

session.connId !== connId ||

366+

nowMs === undefined ||

367+

expiresAtMs === undefined ||

368+

nowMs > expiresAtMs

369+

) {

350370

if (session) {

351371

closeTranscriptionSession(session, "completed");

352372

}