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

推荐订阅源

有赞技术团队
有赞技术团队
小众软件
小众软件
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
爱范儿
爱范儿
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
雷峰网
雷峰网
Jina AI
Jina AI
博客园 - 【当耐特】
V
Visual Studio Blog
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
量子位
IT之家
IT之家
G
Google Developers Blog
V
V2EX
The GitHub Blog
The GitHub Blog
月光博客
月光博客
GbyAI
GbyAI

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: apply undici family fallback to guarded fetch · open...
steipete · 2026-05-04 · via Recent Commits to openclaw:main

@@ -16,6 +16,20 @@ const { agentCtor, envHttpProxyAgentCtor, proxyAgentCtor } = vi.hoisted(() => ({

1616

}),

1717

}));

181819+

const { getDefaultAutoSelectFamily, isWSL2SyncMock } = vi.hoisted(() => ({

20+

getDefaultAutoSelectFamily: vi.fn(() => true as boolean | undefined),

21+

isWSL2SyncMock: vi.fn(() => false),

22+

}));

23+24+

vi.mock("node:net", async (importOriginal) => ({

25+

...(await importOriginal<typeof import("node:net")>()),

26+

getDefaultAutoSelectFamily,

27+

}));

28+29+

vi.mock("../wsl.js", () => ({

30+

isWSL2Sync: isWSL2SyncMock,

31+

}));

32+1933

import type { PinnedHostname } from "./ssrf.js";

20342135

let createPinnedDispatcher: typeof import("./ssrf.js").createPinnedDispatcher;

@@ -28,6 +42,8 @@ beforeEach(() => {

2842

agentCtor.mockClear();

2943

envHttpProxyAgentCtor.mockClear();

3044

proxyAgentCtor.mockClear();

45+

getDefaultAutoSelectFamily.mockReturnValue(true);

46+

isWSL2SyncMock.mockReturnValue(false);

3147

(globalThis as Record<string, unknown>)[TEST_UNDICI_RUNTIME_DEPS_KEY] = {

3248

Agent: agentCtor,

3349

EnvHttpProxyAgent: envHttpProxyAgentCtor,

@@ -62,7 +78,7 @@ function createDispatcherWithPinnedOverride(lookup: PinnedHostname["lookup"]) {

6278

}

63796480

describe("createPinnedDispatcher", () => {

65-

it("uses pinned lookup without overriding global family policy", () => {

81+

it("uses pinned lookup and inherits the shared undici family policy", () => {

6682

const lookup = vi.fn() as unknown as PinnedHostname["lookup"];

6783

const pinned: PinnedHostname = {

6884

hostname: "api.telegram.org",

@@ -76,13 +92,36 @@ describe("createPinnedDispatcher", () => {

7692

expect(agentCtor).toHaveBeenCalledWith({

7793

connect: {

7894

lookup,

95+

autoSelectFamily: true,

96+

autoSelectFamilyAttemptTimeout: 300,

7997

},

8098

allowH2: false,

8199

});

82100

const firstCallArg = agentCtor.mock.calls[0]?.[0] as

83101

| { connect?: Record<string, unknown> }

84102

| undefined;

85-

expect(firstCallArg?.connect?.autoSelectFamily).toBeUndefined();

103+

expect(firstCallArg?.connect?.autoSelectFamily).toBe(true);

104+

});

105+106+

it("reuses the global WSL2 autoSelectFamily policy for pinned dispatchers", () => {

107+

isWSL2SyncMock.mockReturnValue(true);

108+

const lookup = vi.fn() as unknown as PinnedHostname["lookup"];

109+

const pinned: PinnedHostname = {

110+

hostname: "api.telegram.org",

111+

addresses: ["149.154.167.220"],

112+

lookup,

113+

};

114+115+

createPinnedDispatcher(pinned);

116+117+

expect(agentCtor).toHaveBeenCalledWith({

118+

connect: {

119+

lookup,

120+

autoSelectFamily: false,

121+

autoSelectFamilyAttemptTimeout: 300,

122+

},

123+

allowH2: false,

124+

});

86125

});

8712688127

it("preserves caller transport hints while overriding lookup", () => {

@@ -113,6 +152,32 @@ describe("createPinnedDispatcher", () => {

113152

});

114153

});

115154155+

it("preserves explicit family-selection opt-outs", () => {

156+

const lookup = vi.fn() as unknown as PinnedHostname["lookup"];

157+

const pinned: PinnedHostname = {

158+

hostname: "api.telegram.org",

159+

addresses: ["149.154.167.220"],

160+

lookup,

161+

};

162+163+

createPinnedDispatcher(pinned, {

164+

mode: "direct",

165+

connect: {

166+

autoSelectFamily: false,

167+

autoSelectFamilyAttemptTimeout: 50,

168+

},

169+

});

170+171+

expect(agentCtor).toHaveBeenCalledWith({

172+

connect: {

173+

autoSelectFamily: false,

174+

autoSelectFamilyAttemptTimeout: 50,

175+

lookup,

176+

},

177+

allowH2: false,

178+

});

179+

});

180+116181

it("applies stream timeouts to pinned direct dispatchers", () => {

117182

const lookup = vi.fn() as unknown as PinnedHostname["lookup"];

118183

const pinned: PinnedHostname = {

@@ -126,6 +191,8 @@ describe("createPinnedDispatcher", () => {

126191

expect(agentCtor).toHaveBeenCalledWith({

127192

connect: {

128193

lookup,

194+

autoSelectFamily: true,

195+

autoSelectFamilyAttemptTimeout: 300,

129196

timeout: 123_456,

130197

},

131198

allowH2: false,

@@ -204,11 +271,13 @@ describe("createPinnedDispatcher", () => {

204271

expect(envHttpProxyAgentCtor).toHaveBeenCalledWith({

205272

connect: {

206273

autoSelectFamily: true,

274+

autoSelectFamilyAttemptTimeout: 300,

207275

lookup,

208276

},

209277

allowH2: false,

210278

proxyTls: {

211279

autoSelectFamily: true,

280+

autoSelectFamilyAttemptTimeout: 300,

212281

},

213282

});

214283

});

@@ -231,6 +300,10 @@ describe("createPinnedDispatcher", () => {

231300232301

expect(proxyAgentCtor).toHaveBeenCalledWith({

233302

uri: "http://127.0.0.1:7890",

303+

proxyTls: {

304+

autoSelectFamily: true,

305+

autoSelectFamilyAttemptTimeout: 300,

306+

},

234307

allowH2: false,

235308

requestTls: {

236309

autoSelectFamily: false,

@@ -266,7 +339,9 @@ describe("createPinnedDispatcher", () => {

266339

autoSelectFamily: false,

267340

lookup,

268341

},

269-

connect: {

342+

proxyTls: {

343+

autoSelectFamily: true,

344+

autoSelectFamilyAttemptTimeout: 300,

270345

timeout: 654_321,

271346

},

272347

allowH2: false,