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

推荐订阅源

D
DataBreaches.Net
IT之家
IT之家
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
P
Proofpoint News Feed
L
LangChain Blog
博客园 - Franky
美团技术团队
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
博客园 - 叶小钗
小众软件
小众软件
Y
Y Combinator Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
Docker
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
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
fix: stabilize codex supervisor session listing · opencla...
steipete · 2026-05-30 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import * as fs from "node:fs/promises";

22

import * as os from "node:os";

33

import * as path from "node:path";

44

import { describe, expect, it } from "vitest";

5+

import { WebSocketServer } from "ws";

56

import { loadCodexSupervisorEndpoints, resolveCodexSupervisorPluginConfig } from "./config.js";

67

import { connectCodexAppServerEndpoint, resolveSafeApprovalResult } from "./json-rpc-client.js";

78

import { CodexSupervisor } from "./supervisor.js";

@@ -350,6 +351,7 @@ describe("CodexSupervisor", () => {

350351

]);

351352

expect(fake.calls.find((call) => call.method === "thread/list")?.params).toMatchObject({

352353

sourceKinds: ["cli", "vscode", "exec", "appServer", "unknown"],

354+

useStateDbOnly: true,

353355

});

354356

});

355357

@@ -394,6 +396,51 @@ describe("CodexSupervisor", () => {

394396

]);

395397

});

396398399+

it("bounds stored session pagination for large real Codex homes", async () => {

400+

const fake = new FakeCodexConnection({

401+

id: "thread-1",

402+

status: { type: "idle" },

403+

turns: [],

404+

});

405+

fake.request = async (method, params) => {

406+

fake.calls.push({ method, params });

407+

if (method === "thread/loaded/list") {

408+

return { data: [], nextCursor: null };

409+

}

410+

if (method === "thread/list") {

411+

return {

412+

data: [

413+

{ id: "thread-1", status: { type: "notLoaded" }, turns: [] },

414+

{ id: "thread-2", status: { type: "notLoaded" }, turns: [] },

415+

],

416+

nextCursor: "page-2",

417+

};

418+

}

419+

throw new Error(`unexpected method: ${method}`);

420+

};

421+

const supervisor = new CodexSupervisor([endpoint], async () => fake);

422+423+

await expect(

424+

supervisor.listSessions({ includeStored: true, maxStoredSessions: 1 }),

425+

).resolves.toEqual([

426+

{

427+

endpointId: "local",

428+

threadId: "thread-1",

429+

status: "notLoaded",

430+

},

431+

]);

432+

expect(fake.calls.filter((call) => call.method === "thread/list")).toEqual([

433+

{

434+

method: "thread/list",

435+

params: {

436+

limit: 1,

437+

sourceKinds: ["cli", "vscode", "exec", "appServer", "unknown"],

438+

useStateDbOnly: true,

439+

},

440+

},

441+

]);

442+

});

443+397444

it("closes settled connections when evicting them", async () => {

398445

const fake = new FakeCodexConnection({

399446

id: "thread-1",

@@ -508,6 +555,88 @@ describe("CodexSupervisor", () => {

508555

});

509556

});

510557558+

it("uses a unique loaded endpoint match even when another endpoint is down", async () => {

559+

const upEndpoint: CodexSupervisorEndpoint = { id: "up", transport: "stdio-proxy" };

560+

const downEndpoint: CodexSupervisorEndpoint = { id: "down", transport: "stdio-proxy" };

561+

const fake = new FakeCodexConnection({

562+

id: "thread-1",

563+

status: { type: "idle" },

564+

turns: [],

565+

});

566+

const supervisor = new CodexSupervisor([upEndpoint, downEndpoint], async (target) => {

567+

if (target.id === "down") {

568+

throw new Error("host offline");

569+

}

570+

return fake;

571+

});

572+573+

await expect(

574+

supervisor.sendToSession({ threadId: "thread-1", text: "continue" }),

575+

).resolves.toMatchObject({

576+

endpointId: "up",

577+

threadId: "thread-1",

578+

mode: "start",

579+

});

580+

});

581+582+

it("resolves omitted endpoint ids by exact thread read without scanning stored pages", async () => {

583+

const fake = new FakeCodexConnection({

584+

id: "thread-old",

585+

status: { type: "notLoaded" },

586+

turns: [],

587+

});

588+

fake.request = async (method, params) => {

589+

fake.calls.push({ method, params });

590+

if (method === "thread/loaded/list") {

591+

return { data: [], nextCursor: null };

592+

}

593+

if (method === "thread/read" && params?.threadId === "thread-old") {

594+

return { thread: { id: "thread-old", status: { type: "notLoaded" }, turns: [] } };

595+

}

596+

throw new Error(`unexpected method: ${method}`);

597+

};

598+

const supervisor = new CodexSupervisor([endpoint], async () => fake);

599+600+

await expect(supervisor.readSession({ threadId: "thread-old" })).resolves.toEqual({

601+

thread: { id: "thread-old", status: { type: "notLoaded" }, turns: [] },

602+

});

603+

expect(fake.calls.map((call) => call.method)).toEqual([

604+

"thread/loaded/list",

605+

"thread/read",

606+

"thread/read",

607+

]);

608+

});

609+610+

it("resolves stored threads on healthy endpoints when another endpoint is down", async () => {

611+

const downEndpoint: CodexSupervisorEndpoint = { id: "down", transport: "stdio-proxy" };

612+

const upEndpoint: CodexSupervisorEndpoint = { id: "up", transport: "stdio-proxy" };

613+

const fake = new FakeCodexConnection({

614+

id: "thread-old",

615+

status: { type: "notLoaded" },

616+

turns: [],

617+

});

618+

fake.request = async (method, params) => {

619+

fake.calls.push({ method, params });

620+

if (method === "thread/loaded/list") {

621+

return { data: [], nextCursor: null };

622+

}

623+

if (method === "thread/read" && params?.threadId === "thread-old") {

624+

return { thread: { id: "thread-old", status: { type: "notLoaded" }, turns: [] } };

625+

}

626+

throw new Error(`unexpected method: ${method}`);

627+

};

628+

const supervisor = new CodexSupervisor([downEndpoint, upEndpoint], async (target) => {

629+

if (target.id === "down") {

630+

throw new Error("host offline");

631+

}

632+

return fake;

633+

});

634+635+

await expect(supervisor.readSession({ threadId: "thread-old" })).resolves.toEqual({

636+

thread: { id: "thread-old", status: { type: "notLoaded" }, turns: [] },

637+

});

638+

});

639+511640

it("steers active sessions when the in-progress turn is readable", async () => {

512641

const fake = new FakeCodexConnection({

513642

id: "thread-1",

@@ -668,6 +797,45 @@ async function waitForFile(filePath: string): Promise<string> {

668797

}

669798670799

describe("connectCodexAppServerEndpoint", () => {

800+

it("rejects pending websocket requests when the supervisor closes intentionally", async () => {

801+

const server = new WebSocketServer({ host: "127.0.0.1", port: 0 });

802+

const port = await new Promise<number>((resolve) => {

803+

server.once("listening", () => {

804+

const address = server.address();

805+

resolve(typeof address === "object" && address ? address.port : 0);

806+

});

807+

});

808+

const sawProbeRequest = new Promise<void>((resolve) => {

809+

server.once("connection", (socket) => {

810+

socket.on("message", (data) => {

811+

const request = JSON.parse(data.toString()) as Record<string, unknown>;

812+

if (request.method === "initialize") {

813+

socket.send(JSON.stringify({ id: request.id, result: {} }));

814+

}

815+

if (request.method === "thread/loaded/list") {

816+

resolve();

817+

}

818+

});

819+

});

820+

});

821+

const supervisor = new CodexSupervisor(

822+

[{ id: "ws", transport: "websocket", url: `ws://127.0.0.1:${port}` }],

823+

connectCodexAppServerEndpoint,

824+

);

825+826+

const probe = supervisor.probeEndpoints();

827+

await sawProbeRequest;

828+

await supervisor.close();

829+830+

await expect(

831+

Promise.race([

832+

probe,

833+

new Promise((_, reject) => setTimeout(() => reject(new Error("probe timed out")), 500)),

834+

]),

835+

).resolves.toMatchObject([{ endpointId: "ws", ok: false }]);

836+

await new Promise<void>((resolve) => server.close(() => resolve()));

837+

});

838+671839

it("rejects malformed stdio frames instead of throwing out of band", async () => {

672840

const markerDir = await fs.mkdtemp(path.join(os.tmpdir(), "codex-supervisor-malformed-"));

673841

const marker = path.join(markerDir, "closed");

@@ -735,7 +903,7 @@ describe("connectCodexAppServerEndpoint", () => {

735903

process.stdout.write(JSON.stringify({ id: request.id, result: {} }) + "\\n");

736904

return;

737905

}

738-

if (request.method === "thread/list") {

906+

if (request.method === "thread/loaded/list") {

739907

process.stdout.write(JSON.stringify({ id: request.id, result: { threads: [] } }) + "\\n");

740908

setTimeout(() => process.exit(0), 0);

741909

}