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

推荐订阅源

大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
DataBreaches.Net
S
SegmentFault 最新的问题
P
Proofpoint News Feed
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
小众软件
小众软件
博客园 - Franky
有赞技术团队
有赞技术团队
D
Docker
T
Tailwind CSS Blog
雷峰网
雷峰网
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
V
Visual Studio Blog
宝玉的分享
宝玉的分享
爱范儿
爱范儿

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(tooling): cancel labeler response bodies on timeout ·...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -266,19 +266,19 @@ function resolveOpenAITimeoutMs(raw = process.env.OPENCLAW_LABEL_OPEN_ISSUES_OPE

266266

async function withOpenAITimeout<T>(

267267

label: string,

268268

timeoutMs: number,

269-

run: (signal: AbortSignal) => Promise<T>,

269+

run: (signal: AbortSignal, timeoutPromise: Promise<never>) => Promise<T>,

270270

): Promise<T> {

271271

const controller = new AbortController();

272272

let timeout: ReturnType<typeof setTimeout> | undefined;

273-

const timeoutPromise = new Promise<T>((_resolve, reject) => {

273+

const timeoutPromise = new Promise<never>((_resolve, reject) => {

274274

timeout = setTimeout(() => {

275275

const error = new Error(`${label} exceeded timeout of ${timeoutMs}ms`);

276276

reject(error);

277277

controller.abort(error);

278278

}, timeoutMs);

279279

});

280280

try {

281-

return await Promise.race([run(controller.signal), timeoutPromise]);

281+

return await Promise.race([run(controller.signal, timeoutPromise), timeoutPromise]);

282282

} finally {

283283

if (timeout) {

284284

clearTimeout(timeout);

@@ -289,6 +289,7 @@ async function withOpenAITimeout<T>(

289289

async function readBoundedResponseText(

290290

response: Response,

291291

maxChars = OPENAI_ERROR_BODY_MAX_CHARS,

292+

timeoutPromise?: Promise<never>,

292293

): Promise<string> {

293294

if (!response.body) {

294295

return "";

@@ -298,10 +299,13 @@ async function readBoundedResponseText(

298299

const decoder = new TextDecoder();

299300

let text = "";

300301

let truncated = false;

302+

let canceled = false;

301303302304

try {

303305

while (text.length <= maxChars) {

304-

const { done, value } = await reader.read();

306+

const { done, value } = await readOpenAIErrorChunk(reader, timeoutPromise, () => {

307+

canceled = true;

308+

});

305309

if (done) {

306310

text += decoder.decode();

307311

break;

@@ -317,23 +321,63 @@ async function readBoundedResponseText(

317321

} finally {

318322

if (truncated) {

319323

await reader.cancel().catch(() => undefined);

320-

} else {

324+

} else if (!canceled) {

321325

reader.releaseLock();

322326

}

323327

}

324328325329

return truncated ? `${text}\n[truncated]` : text;

326330

}

327331332+

function cancelOpenAIErrorReaderSoon(reader: ReadableStreamDefaultReader<Uint8Array>): void {

333+

void Promise.resolve()

334+

.then(() => reader.cancel())

335+

.catch(() => undefined);

336+

}

337+338+

async function readOpenAIErrorChunk(

339+

reader: ReadableStreamDefaultReader<Uint8Array>,

340+

timeoutPromise: Promise<never> | undefined,

341+

markCanceled: () => void,

342+

): Promise<ReadableStreamReadResult<Uint8Array>> {

343+

const readPromise = reader.read();

344+

if (!timeoutPromise) {

345+

return await readPromise;

346+

}

347+348+

let waitingForRead = true;

349+

const timeoutReadPromise = timeoutPromise.catch((error: unknown) => {

350+

if (waitingForRead) {

351+

markCanceled();

352+

cancelOpenAIErrorReaderSoon(reader);

353+

}

354+

throw error instanceof Error ? error : new Error("OpenAI error response body read timed out");

355+

});

356+357+

try {

358+

return await Promise.race([readPromise, timeoutReadPromise]);

359+

} finally {

360+

waitingForRead = false;

361+

}

362+

}

363+364+

type OpenAIJsonReadOptions = {

365+

signal?: AbortSignal;

366+

timeoutPromise?: Promise<never>;

367+

};

368+328369

async function readBoundedOpenAIJson(

329370

response: Response,

330371

maxBytes = OPENAI_RESPONSE_BODY_MAX_BYTES,

372+

options: OpenAIJsonReadOptions = {},

331373

): Promise<OpenAIResponse> {

332374

const text = await readBoundedBodyText(response, "OpenAI classification", maxBytes, {

333375

createTooLargeError: (message) =>

334376

Object.assign(new Error(message), {

335377

code: "ETOOBIG",

336378

}),

379+

signal: options.signal,

380+

timeoutPromise: options.timeoutPromise,

337381

});

338382

return JSON.parse(text) as OpenAIResponse;

339383

}

@@ -692,7 +736,7 @@ async function classifyItem(

692736

const payload = await withOpenAITimeout(

693737

"OpenAI issue label classification request",

694738

timeoutMs,

695-

async (signal) => {

739+

async (signal, timeoutPromise) => {

696740

const response = await fetchImpl("https://api.openai.com/v1/responses", {

697741

method: "POST",

698742

headers: {

@@ -741,11 +785,11 @@ async function classifyItem(

741785

});

742786743787

if (!response.ok) {

744-

const text = await readBoundedResponseText(response);

788+

const text = await readBoundedResponseText(response, undefined, timeoutPromise);

745789

throw new Error(`OpenAI request failed (${response.status}): ${text}`);

746790

}

747791748-

return await readBoundedOpenAIJson(response);

792+

return await readBoundedOpenAIJson(response, undefined, { signal, timeoutPromise });

749793

},

750794

);

751795

const rawText = extractResponseText(payload);