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

推荐订阅源

博客园 - 司徒正美
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
罗磊的独立博客
The GitHub Blog
The GitHub Blog
L
LangChain Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
D
DataBreaches.Net
宝玉的分享
宝玉的分享
U
Unit 42
阮一峰的网络日志
阮一峰的网络日志
Last Week in AI
Last Week in AI
N
Netflix TechBlog - Medium
The Cloudflare Blog
Microsoft Azure Blog
Microsoft Azure Blog
H
Help Net Security
美团技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | 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
refactor(codex): dedupe startup client cleanup · openclaw...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main

@@ -11,6 +11,7 @@ import {

1111

type resolveSandboxContext,

1212

} from "openclaw/plugin-sdk/agent-harness-runtime";

1313

import { defaultCodexAppInventoryCache } from "./app-inventory-cache.js";

14+

import { closeCodexStartupClientBestEffort } from "./attempt-client-cleanup.js";

1415

import { buildCodexPluginThreadConfigEligibilityLogData } from "./attempt-diagnostics.js";

1516

import { withCodexStartupTimeout } from "./attempt-timeouts.js";

1617

import type { CodexAppServerClientFactory } from "./client-factory.js";

@@ -52,10 +53,8 @@ import {

5253

type CodexSandboxExecEnvironment,

5354

} from "./sandbox-exec-server.js";

5455

import {

55-

clearSharedCodexAppServerClientIfCurrentAndUnclaimed,

5656

clearSharedCodexAppServerClientIfCurrent,

5757

releaseLeasedSharedCodexAppServerClient,

58-

retireSharedCodexAppServerClientIfCurrent,

5958

} from "./shared-client.js";

6059

import {

6160

startOrResumeThread,

@@ -136,7 +135,7 @@ export async function startCodexAttemptThread(params: {

136135

await releaseStartupResourcesOnTimeout?.();

137136

releaseSharedClientLease?.();

138137

releaseSharedClientLease = undefined;

139-

await closeAbandonedStartupClient(startupClientForAbandonedRequestCleanup);

138+

await closeCodexStartupClientBestEffort(startupClientForAbandonedRequestCleanup);

140139

startupClientForAbandonedRequestCleanup = undefined;

141140

},

142141

operation: async () => {

@@ -188,7 +187,7 @@ export async function startCodexAttemptThread(params: {

188187

// close any late-arriving client instead of leaking a lease.

189188

startupClientForAbandonedRequestCleanup = client;

190189

if (startupAbandoned || startupAbandonController.signal.aborted) {

191-

void closeAbandonedStartupClient(client);

190+

void closeCodexStartupClientBestEffort(client);

192191

}

193192

},

194193

abandonSignal: startupAbandonController.signal,

@@ -346,7 +345,7 @@ export async function startCodexAttemptThread(params: {

346345

activeStartupClient.request(method, requestParams, {

347346

timeoutMs: params.appServer.requestTimeoutMs,

348347

signal,

349-

}),

348+

}),

350349

appCache: defaultCodexAppInventoryCache,

351350

appCacheKey: pluginAppCacheKey,

352351

}),

@@ -394,7 +393,7 @@ export async function startCodexAttemptThread(params: {

394393

if (startupClientForAbandonedRequestCleanup === startupClient) {

395394

startupClientForAbandonedRequestCleanup = undefined;

396395

}

397-

await closeAbandonedStartupClient(startupClient);

396+

await closeCodexStartupClientBestEffort(startupClient);

398397

} else if (

399398

shouldClearSharedClientAfterStartupRace(startupAttemptError) ||

400399

shouldClearSharedClientAfterStartupFailure({

@@ -405,7 +404,7 @@ export async function startCodexAttemptThread(params: {

405404

if (startupClientForAbandonedRequestCleanup === startupClient) {

406405

startupClientForAbandonedRequestCleanup = undefined;

407406

}

408-

await evictFailedStartupClient(startupClient);

407+

await closeCodexStartupClientBestEffort(startupClient);

409408

}

410409

}

411410

}

@@ -467,7 +466,7 @@ export async function startCodexAttemptThread(params: {

467466

if (params.signal.aborted || shouldClearSharedClientAfterStartupAbandon(error)) {

468467

releaseSharedClientLease?.();

469468

releaseSharedClientLease = undefined;

470-

await closeAbandonedStartupClient(startupClientForAbandonedRequestCleanup);

469+

await closeCodexStartupClientBestEffort(startupClientForAbandonedRequestCleanup);

471470

startupClientForAbandonedRequestCleanup = undefined;

472471

} else if (

473472

shouldClearSharedClientAfterStartupRace(error) ||

@@ -478,7 +477,7 @@ export async function startCodexAttemptThread(params: {

478477

) {

479478

releaseSharedClientLease?.();

480479

releaseSharedClientLease = undefined;

481-

await evictFailedStartupClient(startupClientForAbandonedRequestCleanup);

480+

await closeCodexStartupClientBestEffort(startupClientForAbandonedRequestCleanup);

482481

startupClientForAbandonedRequestCleanup = undefined;

483482

}

484483

throw error;

@@ -487,80 +486,6 @@ export async function startCodexAttemptThread(params: {

487486

}

488487

}

489488490-

async function closeAbandonedStartupClient(

491-

client: CodexAppServerClient | undefined,

492-

): Promise<void> {

493-

if (!client) {

494-

return;

495-

}

496-

const unclaimedSharedClient = clearSharedCodexAppServerClientIfCurrentAndUnclaimed(client);

497-

if (unclaimedSharedClient.closed) {

498-

await closeClientAndWaitIfAvailable(client);

499-

return;

500-

}

501-

if (unclaimedSharedClient.found) {

502-

const retired = retireSharedCodexAppServerClientIfCurrent(client);

503-

if (retired?.closed) {

504-

await closeClientAndWaitIfAvailable(client);

505-

}

506-

return;

507-

}

508-

const retiredSharedClient = retireSharedCodexAppServerClientIfCurrent(client);

509-

if (retiredSharedClient) {

510-

if (retiredSharedClient.closed) {

511-

await closeClientAndWaitIfAvailable(client);

512-

}

513-

return;

514-

}

515-

if (clearSharedCodexAppServerClientIfCurrent(client)) {

516-

await closeClientAndWaitIfAvailable(client);

517-

return;

518-

}

519-

await closeClientAndWaitIfAvailable(client);

520-

}

521-522-

async function closeClientAndWaitIfAvailable(client: CodexAppServerClient): Promise<void> {

523-

const closeable = client as {

524-

close?: CodexAppServerClient["close"];

525-

closeAndWait?: CodexAppServerClient["closeAndWait"];

526-

};

527-

if (typeof closeable.closeAndWait === "function") {

528-

await closeable.closeAndWait();

529-

return;

530-

}

531-

closeable.close?.();

532-

}

533-534-

async function evictFailedStartupClient(client: CodexAppServerClient | undefined): Promise<void> {

535-

if (!client) {

536-

return;

537-

}

538-

const unclaimedSharedClient = clearSharedCodexAppServerClientIfCurrentAndUnclaimed(client);

539-

if (unclaimedSharedClient.closed) {

540-

await closeClientAndWaitIfAvailable(client);

541-

return;

542-

}

543-

if (unclaimedSharedClient.found) {

544-

const retired = retireSharedCodexAppServerClientIfCurrent(client);

545-

if (retired?.closed) {

546-

await closeClientAndWaitIfAvailable(client);

547-

}

548-

return;

549-

}

550-

const retiredSharedClient = retireSharedCodexAppServerClientIfCurrent(client);

551-

if (retiredSharedClient) {

552-

if (retiredSharedClient.closed) {

553-

await closeClientAndWaitIfAvailable(client);

554-

}

555-

return;

556-

}

557-

if (clearSharedCodexAppServerClientIfCurrent(client)) {

558-

await closeClientAndWaitIfAvailable(client);

559-

return;

560-

}

561-

await closeClientAndWaitIfAvailable(client);

562-

}

563-564489

function shouldClearSharedClientAfterStartupAbandon(error: unknown): boolean {

565490

return (

566491

error instanceof Error &&