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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
P
Proofpoint News Feed
D
Docker
J
Java Code Geeks
L
LangChain Blog
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
腾讯CDC
罗磊的独立博客
U
Unit 42
爱范儿
爱范儿
Vercel News
Vercel News
MyScale Blog
MyScale 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(e2e): time out package url response bodies · openclaw...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -987,6 +987,15 @@ function responseHeader(response, name) {

987987

return response.headers?.get?.(name) ?? null;

988988

}

989989990+

function createPackageDownloadTimeoutError(parsed, timeoutMs) {

991+

return Object.assign(

992+

new Error(`package_url download timed out after ${timeoutMs}ms: ${parsed.toString()}`),

993+

{

994+

code: "ETIMEDOUT",

995+

},

996+

);

997+

}

998+990999

async function closeResponseBody(body) {

9911000

if (!body) {

9921001

return;

@@ -1002,8 +1011,16 @@ async function closeResponseBody(body) {

1002101110031012

async function openFetchPackageDownloadResponse(parsed, options) {

10041013

const controller = new AbortController();

1005-

const timeout = setTimeout(() => controller.abort(), options.timeoutMs);

1006-

timeout.unref?.();

1014+

const timeoutError = createPackageDownloadTimeoutError(parsed, options.timeoutMs);

1015+

let timeout;

1016+

const timeoutPromise = new Promise((_, reject) => {

1017+

timeout = setTimeout(() => {

1018+

controller.abort(timeoutError);

1019+

reject(timeoutError);

1020+

}, options.timeoutMs);

1021+

timeout.unref?.();

1022+

});

1023+

timeoutPromise.catch(() => {});

10071024

const response = await options

10081025

.fetchImpl(parsed, {

10091026

headers: options.headers,

@@ -1013,27 +1030,31 @@ async function openFetchPackageDownloadResponse(parsed, options) {

10131030

.catch((error) => {

10141031

clearTimeout(timeout);

10151032

if (error?.name === "AbortError") {

1016-

throw new Error(

1017-

`package_url download timed out after ${options.timeoutMs}ms: ${parsed.toString()}`,

1018-

{

1019-

cause: error,

1020-

},

1021-

);

1033+

throw Object.assign(timeoutError, { cause: error });

10221034

}

10231035

throw error;

10241036

});

10251037

return {

10261038

close: async () => closeResponseBody(response.body),

10271039

response,

10281040

timeout,

1041+

timeoutPromise,

10291042

timeoutMs: options.timeoutMs,

10301043

};

10311044

}

1032104510331046

async function openHttpsPackageDownloadResponse(parsed, options) {

10341047

const controller = new AbortController();

1035-

const timeout = setTimeout(() => controller.abort(), options.timeoutMs);

1036-

timeout.unref?.();

1048+

const timeoutError = createPackageDownloadTimeoutError(parsed, options.timeoutMs);

1049+

let timeout;

1050+

const timeoutPromise = new Promise((_, reject) => {

1051+

timeout = setTimeout(() => {

1052+

controller.abort(timeoutError);

1053+

reject(timeoutError);

1054+

}, options.timeoutMs);

1055+

timeout.unref?.();

1056+

});

1057+

timeoutPromise.catch(() => {});

10371058

const lookup = createPinnedLookup(parsed.hostname, options.addresses);

10381059

const response = await new Promise((resolve, reject) => {

10391060

const request = httpsRequest(

@@ -1065,12 +1086,7 @@ async function openHttpsPackageDownloadResponse(parsed, options) {

10651086

/** @param {unknown} error */ (error) => {

10661087

clearTimeout(timeout);

10671088

if (error?.name === "AbortError" || error?.code === "ABORT_ERR") {

1068-

throw new Error(

1069-

`package_url download timed out after ${options.timeoutMs}ms: ${parsed.toString()}`,

1070-

{

1071-

cause: error,

1072-

},

1073-

);

1089+

throw Object.assign(timeoutError, { cause: error });

10741090

}

10751091

throw error;

10761092

},

@@ -1079,6 +1095,7 @@ async function openHttpsPackageDownloadResponse(parsed, options) {

10791095

close: async () => closeResponseBody(response.body),

10801096

response,

10811097

timeout,

1098+

timeoutPromise,

10821099

timeoutMs: options.timeoutMs,

10831100

};

10841101

}

@@ -1124,7 +1141,46 @@ async function openPackageDownloadResponse(url, options) {

11241141

throw new Error(`package_url exceeded ${maxRedirects} redirects: ${url}`);

11251142

}

112611431127-

async function* limitResponseBody(body, maxBytes) {

1144+

async function* limitWebResponseBody(body, maxBytes, timeoutPromise) {

1145+

let downloaded = 0;

1146+

const reader = body.getReader();

1147+

let timedOut = false;

1148+

let timeoutFailure;

1149+

const timeoutRead = timeoutPromise?.catch((error) => {

1150+

timedOut = true;

1151+

timeoutFailure = error;

1152+

void reader.cancel().catch(() => {});

1153+

throw error;

1154+

});

1155+

try {

1156+

for (;;) {

1157+

const next = reader.read();

1158+

const { done, value } = timeoutRead ? await Promise.race([next, timeoutRead]) : await next;

1159+

if (timedOut) {

1160+

throw toLintErrorObject(timeoutFailure, "package_url download timed out");

1161+

}

1162+

if (done) {

1163+

return;

1164+

}

1165+

const size = typeof value === "string" ? Buffer.byteLength(value) : value.byteLength;

1166+

downloaded += size;

1167+

if (downloaded > maxBytes) {

1168+

throw new Error(`package_url exceeds maximum download size of ${maxBytes} bytes`);

1169+

}

1170+

yield value;

1171+

}

1172+

} finally {

1173+

if (!timedOut) {

1174+

reader.releaseLock();

1175+

}

1176+

}

1177+

}

1178+1179+

async function* limitResponseBody(body, maxBytes, timeoutPromise) {

1180+

if (typeof body.getReader === "function") {

1181+

yield* limitWebResponseBody(body, maxBytes, timeoutPromise);

1182+

return;

1183+

}

11281184

let downloaded = 0;

11291185

for await (const chunk of body) {

11301186

const size = typeof chunk === "string" ? Buffer.byteLength(chunk) : chunk.byteLength;

@@ -1138,7 +1194,10 @@ async function* limitResponseBody(body, maxBytes) {

1138119411391195

export async function downloadUrl(url, target, options = {}) {

11401196

const maxBytes = options.maxBytes ?? PACKAGE_URL_MAX_BYTES;

1141-

const { close, response, timeout, timeoutMs } = await openPackageDownloadResponse(url, options);

1197+

const { close, response, timeout, timeoutMs, timeoutPromise } = await openPackageDownloadResponse(

1198+

url,

1199+

options,

1200+

);

11421201

const tempTarget = `${target}.tmp`;

11431202

try {

11441203

if (!responseOk(response) || !response.body) {

@@ -1151,9 +1210,15 @@ export async function downloadUrl(url, target, options = {}) {

11511210

throw new Error(`package_url exceeds maximum download size of ${maxBytes} bytes`);

11521211

}

11531212

await fs.rm(tempTarget, { force: true });

1154-

await pipeline(limitResponseBody(response.body, maxBytes), createWriteStream(tempTarget));

1213+

await pipeline(

1214+

limitResponseBody(response.body, maxBytes, timeoutPromise),

1215+

createWriteStream(tempTarget),

1216+

);

11551217

await fs.rename(tempTarget, target);

11561218

} catch (error) {

1219+

if (error?.code === "ETIMEDOUT") {

1220+

throw error;

1221+

}

11571222

if (error?.name === "AbortError") {

11581223

throw new Error(`package_url download timed out after ${timeoutMs}ms: ${url}`, {

11591224

cause: error,