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

推荐订阅源

美团技术团队
B
Blog RSS Feed
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
D
Docker
Blog — PlanetScale
Blog — PlanetScale
M
MIT News - Artificial intelligence
C
Check Point Blog
The Cloudflare Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
量子位
The GitHub Blog
The GitHub Blog
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Vercel News
Vercel News
P
Proofpoint News Feed
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
博客园 - 司徒正美

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): cancel Open WebUI probe body reads · openclaw/o...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -74,12 +74,16 @@ function createTimeoutError(label, timeoutMs) {

7474

async function withRequestTimeout(label, timeoutMs, run) {

7575

const controller = new AbortController();

7676

const timeoutError = createTimeoutError(label, timeoutMs);

77-

const timer = setTimeout(() => {

78-

controller.abort(timeoutError);

79-

}, timeoutMs);

80-

timer.unref?.();

77+

let timer;

78+

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

79+

timer = setTimeout(() => {

80+

controller.abort(timeoutError);

81+

reject(timeoutError);

82+

}, timeoutMs);

83+

timer.unref?.();

84+

});

8185

try {

82-

return await run(controller.signal);

86+

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

8387

} catch (error) {

8488

if (controller.signal.aborted) {

8589

throw timeoutError;

@@ -90,12 +94,17 @@ async function withRequestTimeout(label, timeoutMs, run) {

9094

}

9195

}

929693-

async function readBoundedResponseText(response, label, byteLimit = responseBodyMaxBytes) {

94-

return await readBoundedResponseTextWithLimit(response, label, byteLimit);

97+

async function readBoundedResponseText(response, label, timeoutPromise) {

98+

return await readBoundedResponseTextWithLimit(

99+

response,

100+

label,

101+

responseBodyMaxBytes,

102+

timeoutPromise,

103+

);

95104

}

9610597-

async function readBoundedResponseJson(response, label) {

98-

const body = await readBoundedResponseText(response, label);

106+

async function readBoundedResponseJson(response, label, timeoutPromise) {

107+

const body = await readBoundedResponseText(response, label, timeoutPromise);

99108

try {

100109

return JSON.parse(body);

101110

} catch (error) {

@@ -134,65 +143,85 @@ function sleep(ms) {

134143

}

135144136145

async function fetchSignin() {

137-

return await withRequestTimeout("Open WebUI signin", controlTimeoutMs, async (signal) => {

138-

const response = await fetch(`${baseUrl}/api/v1/auths/signin`, {

139-

method: "POST",

140-

headers: { "content-type": "application/json" },

141-

body: JSON.stringify({ email, password }),

142-

signal,

143-

});

144-

if (!response.ok) {

145-

const body = await readBoundedResponseText(response, "Open WebUI signin");

146-

throw new Error(`signin failed: HTTP ${response.status} ${body}`);

147-

}

148-

return {

149-

cookie: getCookieHeader(response),

150-

json: await readBoundedResponseJson(response, "Open WebUI signin"),

151-

};

152-

});

146+

return await withRequestTimeout(

147+

"Open WebUI signin",

148+

controlTimeoutMs,

149+

async (signal, timeoutPromise) => {

150+

const response = await fetch(`${baseUrl}/api/v1/auths/signin`, {

151+

method: "POST",

152+

headers: { "content-type": "application/json" },

153+

body: JSON.stringify({ email, password }),

154+

signal,

155+

});

156+

if (!response.ok) {

157+

const body = await readBoundedResponseText(response, "Open WebUI signin", timeoutPromise);

158+

throw new Error(`signin failed: HTTP ${response.status} ${body}`);

159+

}

160+

return {

161+

cookie: getCookieHeader(response),

162+

json: await readBoundedResponseJson(response, "Open WebUI signin", timeoutPromise),

163+

};

164+

},

165+

);

153166

}

154167155168

async function fetchModels(authHeaders, attempt) {

156169

return await withRequestTimeout(

157170

`Open WebUI models attempt ${attempt}`,

158171

controlTimeoutMs,

159-

async (signal) => {

172+

async (signal, timeoutPromise) => {

160173

const response = await fetch(`${baseUrl}/api/models`, { headers: authHeaders, signal });

161174

if (!response.ok) {

162175

return {

163176

ok: false,

164177

status: response.status,

165-

text: await readBoundedResponseText(response, `Open WebUI models attempt ${attempt}`),

178+

text: await readBoundedResponseText(

179+

response,

180+

`Open WebUI models attempt ${attempt}`,

181+

timeoutPromise,

182+

),

166183

};

167184

}

168185

return {

169-

json: await readBoundedResponseJson(response, `Open WebUI models attempt ${attempt}`),

186+

json: await readBoundedResponseJson(

187+

response,

188+

`Open WebUI models attempt ${attempt}`,

189+

timeoutPromise,

190+

),

170191

ok: true,

171192

};

172193

},

173194

);

174195

}

175196176197

async function fetchChatCompletion(authHeaders, targetModel) {

177-

return await withRequestTimeout("Open WebUI chat completion", chatTimeoutMs, async (signal) => {

178-

const response = await fetch(`${baseUrl}/api/chat/completions`, {

179-

method: "POST",

180-

headers: {

181-

...authHeaders,

182-

"content-type": "application/json",

183-

},

184-

body: JSON.stringify({

185-

model: targetModel,

186-

messages: [{ role: "user", content: prompt }],

187-

}),

188-

signal,

189-

});

190-

if (!response.ok) {

191-

const body = await readBoundedResponseText(response, "Open WebUI chat completion");

192-

throw new Error(`/api/chat/completions failed: HTTP ${response.status} ${body}`);

193-

}

194-

return await readBoundedResponseJson(response, "Open WebUI chat completion");

195-

});

198+

return await withRequestTimeout(

199+

"Open WebUI chat completion",

200+

chatTimeoutMs,

201+

async (signal, timeoutPromise) => {

202+

const response = await fetch(`${baseUrl}/api/chat/completions`, {

203+

method: "POST",

204+

headers: {

205+

...authHeaders,

206+

"content-type": "application/json",

207+

},

208+

body: JSON.stringify({

209+

model: targetModel,

210+

messages: [{ role: "user", content: prompt }],

211+

}),

212+

signal,

213+

});

214+

if (!response.ok) {

215+

const body = await readBoundedResponseText(

216+

response,

217+

"Open WebUI chat completion",

218+

timeoutPromise,

219+

);

220+

throw new Error(`/api/chat/completions failed: HTTP ${response.status} ${body}`);

221+

}

222+

return await readBoundedResponseJson(response, "Open WebUI chat completion", timeoutPromise);

223+

},

224+

);

196225

}

197226198227

function extractModelIds(modelsJson) {