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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

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
refactor(config): remove dead async session target resolv...
vincentkoc · 2026-06-19 · via Recent Commits to openclaw:main

@@ -8,7 +8,6 @@ import type { OpenClawConfig } from "../config.js";

88

import { resolveStorePath } from "./paths.js";

99

import {

1010

resolveAgentSessionStoreTargetsSync,

11-

resolveAllAgentSessionStoreTargets,

1211

resolveAllAgentSessionStoreTargetsSync,

1312

resolveSessionStoreTargets,

1413

} from "./targets.js";

@@ -57,7 +56,7 @@ async function resolveTargetsForCustomRoot(home: string, agentIds: string[]) {

5756

const customRoot = path.join(home, "custom-state");

5857

const storePaths = await createAgentSessionStores(customRoot, agentIds);

5958

const cfg = createCustomRootCfg(customRoot);

60-

const targets = await resolveAllAgentSessionStoreTargets(cfg, { env: process.env });

59+

const targets = resolveAllAgentSessionStoreTargetsSync(cfg, { env: process.env });

6160

return { storePaths, targets };

6261

}

6362

@@ -72,19 +71,6 @@ function expectTargetsToContainStores(

7271

}

7372

}

747375-

const discoveryResolvers = [

76-

{

77-

label: "async",

78-

resolve: async (cfg: OpenClawConfig, env: NodeJS.ProcessEnv) =>

79-

await resolveAllAgentSessionStoreTargets(cfg, { env }),

80-

},

81-

{

82-

label: "sync",

83-

resolve: async (cfg: OpenClawConfig, env: NodeJS.ProcessEnv) =>

84-

resolveAllAgentSessionStoreTargetsSync(cfg, { env }),

85-

},

86-

] as const;

87-8874

describe("resolveSessionStoreTargets", () => {

8975

it("resolves all configured agent stores", async () => {

9076

await withTempHome(async () => {

@@ -226,7 +212,7 @@ describe("resolveAgentSessionStoreTargetsSync", () => {

226212

});

227213

});

228214229-

describe("resolveAllAgentSessionStoreTargets", () => {

215+

describe("resolveAllAgentSessionStoreTargetsSync", () => {

230216

it("includes discovered on-disk agent stores alongside configured targets", async () => {

231217

await withTempHome(async (home) => {

232218

const stateDir = path.join(home, ".openclaw");

@@ -238,7 +224,7 @@ describe("resolveAllAgentSessionStoreTargets", () => {

238224

},

239225

};

240226241-

const targets = await resolveAllAgentSessionStoreTargets(cfg, { env: process.env });

227+

const targets = resolveAllAgentSessionStoreTargetsSync(cfg, { env: process.env });

242228243229

expectTargetsToContainStores(targets, storePaths);

244230

expect(countMatching(targets, (target) => target.storePath === storePaths.ops)).toBe(1);

@@ -288,7 +274,7 @@ describe("resolveAllAgentSessionStoreTargets", () => {

288274

const mainStorePath = await resolveRealStorePath(mainSessionsDir);

289275

const retiredStorePath = await resolveRealStorePath(retiredSessionsDir);

290276291-

const targets = await resolveAllAgentSessionStoreTargets(cfg, { env });

277+

const targets = resolveAllAgentSessionStoreTargetsSync(cfg, { env });

292278293279

expect(

294280

targets.some((target) => target.agentId === "main" && target.storePath === mainStorePath),

@@ -301,52 +287,52 @@ describe("resolveAllAgentSessionStoreTargets", () => {

301287

});

302288

});

303289304-

for (const resolver of discoveryResolvers) {

305-

it(`skips unreadable or invalid discovery roots when other roots are still readable (${resolver.label})`, async () => {

306-

await withTempHome(async (home) => {

307-

const customRoot = path.join(home, "custom-state");

308-

await fs.mkdir(customRoot, { recursive: true });

309-

await fs.writeFile(path.join(customRoot, "agents"), "not-a-directory", "utf8");

310-311-

const envStateDir = path.join(home, "env-state");

312-

const storePaths = await createAgentSessionStores(envStateDir, ["main", "retired"]);

313-

const cfg = createCustomRootCfg(customRoot, "main");

314-

const env = {

315-

...process.env,

316-

OPENCLAW_STATE_DIR: envStateDir,

317-

};

318-319-

const targets = await resolver.resolve(cfg, env);

320-

expect(

321-

targets.some(

322-

(target) => target.agentId === "retired" && target.storePath === storePaths.retired,

323-

),

324-

).toBe(true);

325-

});

290+

it("skips unreadable or invalid discovery roots when other roots are still readable", async () => {

291+

await withTempHome(async (home) => {

292+

const customRoot = path.join(home, "custom-state");

293+

await fs.mkdir(customRoot, { recursive: true });

294+

await fs.writeFile(path.join(customRoot, "agents"), "not-a-directory", "utf8");

295+296+

const envStateDir = path.join(home, "env-state");

297+

const storePaths = await createAgentSessionStores(envStateDir, ["main", "retired"]);

298+

const cfg = createCustomRootCfg(customRoot, "main");

299+

const env = {

300+

...process.env,

301+

OPENCLAW_STATE_DIR: envStateDir,

302+

};

303+304+

const targets = resolveAllAgentSessionStoreTargetsSync(cfg, { env });

305+

expect(

306+

targets.some(

307+

(target) => target.agentId === "retired" && target.storePath === storePaths.retired,

308+

),

309+

).toBe(true);

326310

});

311+

});

327312328-

it(`skips symlinked discovered stores under templated agents roots (${resolver.label})`, async () => {

329-

await withTempHome(async (home) => {

330-

if (process.platform === "win32") {

331-

return;

332-

}

333-

const customRoot = path.join(home, "custom-state");

334-

const opsSessionsDir = path.join(customRoot, "agents", "ops", "sessions");

335-

const leakedFile = path.join(home, "outside.json");

336-

await fs.mkdir(opsSessionsDir, { recursive: true });

337-

await fs.writeFile(leakedFile, JSON.stringify({ leak: { secret: "x" } }), "utf8");

338-

await fs.symlink(leakedFile, path.join(opsSessionsDir, "sessions.json"));

339-340-

const targets = await resolver.resolve(createCustomRootCfg(customRoot), process.env);

341-

const symlinkStoreSuffix = path.join("ops", "sessions", "sessions.json");

342-

expect(

343-

targets.some(

344-

(target) => target.agentId === "ops" && target.storePath.includes(symlinkStoreSuffix),

345-

),

346-

).toBe(false);

313+

it("skips symlinked discovered stores under templated agents roots", async () => {

314+

await withTempHome(async (home) => {

315+

if (process.platform === "win32") {

316+

return;

317+

}

318+

const customRoot = path.join(home, "custom-state");

319+

const opsSessionsDir = path.join(customRoot, "agents", "ops", "sessions");

320+

const leakedFile = path.join(home, "outside.json");

321+

await fs.mkdir(opsSessionsDir, { recursive: true });

322+

await fs.writeFile(leakedFile, JSON.stringify({ leak: { secret: "x" } }), "utf8");

323+

await fs.symlink(leakedFile, path.join(opsSessionsDir, "sessions.json"));

324+325+

const targets = resolveAllAgentSessionStoreTargetsSync(createCustomRootCfg(customRoot), {

326+

env: process.env,

347327

});

328+

const symlinkStoreSuffix = path.join("ops", "sessions", "sessions.json");

329+

expect(

330+

targets.some(

331+

(target) => target.agentId === "ops" && target.storePath.includes(symlinkStoreSuffix),

332+

),

333+

).toBe(false);

348334

});

349-

}

335+

});

350336351337

it("skips discovered directories that only normalize into the default main agent", async () => {

352338

await withTempHome(async (home) => {

@@ -360,7 +346,7 @@ describe("resolveAllAgentSessionStoreTargets", () => {

360346361347

const cfg: OpenClawConfig = {};

362348

const mainStorePath = await resolveRealStorePath(mainSessionsDir);

363-

const targets = await resolveAllAgentSessionStoreTargets(cfg, { env: process.env });

349+

const targets = resolveAllAgentSessionStoreTargetsSync(cfg, { env: process.env });

364350365351

expect(targets).toEqual([

366352

{