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

推荐订阅源

奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
小众软件
小众软件
F
Fortinet All Blogs
博客园 - 叶小钗
博客园_首页
D
DataBreaches.Net
Apple Machine Learning Research
Apple Machine Learning Research
U
Unit 42
爱范儿
爱范儿
aimingoo的专栏
aimingoo的专栏
博客园 - Franky
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
M
MIT News - Artificial intelligence
有赞技术团队
有赞技术团队
博客园 - 【当耐特】
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - 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
fix: keep browser status page probe within timeout · open...
steipete · 2026-05-11 · via Recent Commits to openclaw:main

@@ -460,37 +460,105 @@ async function waitForChromeMcpReady(

460460

session: ChromeMcpSession,

461461

profileName: string,

462462

timeoutMs?: number,

463+

signal?: AbortSignal,

463464

): Promise<void> {

464-

if (!timeoutMs || timeoutMs <= 0) {

465+

if (signal?.aborted) {

466+

throw signal.reason ?? new Error("aborted");

467+

}

468+

if ((!timeoutMs || timeoutMs <= 0) && !signal) {

465469

await session.ready;

466470

return;

467471

}

468472469473

let timer: ReturnType<typeof setTimeout> | undefined;

474+

let abortListener: (() => void) | undefined;

475+

try {

476+

const racers: Array<Promise<void> | Promise<never>> = [session.ready];

477+

if (timeoutMs && timeoutMs > 0) {

478+

racers.push(

479+

new Promise<never>((_, reject) => {

480+

timer = setTimeout(() => {

481+

reject(

482+

new BrowserProfileUnavailableError(

483+

`Chrome MCP existing-session attach for profile "${profileName}" timed out after ${timeoutMs}ms.`,

484+

),

485+

);

486+

}, timeoutMs);

487+

}),

488+

);

489+

}

490+

if (signal) {

491+

racers.push(

492+

new Promise<never>((_, reject) => {

493+

abortListener = () => reject(signal.reason ?? new Error("aborted"));

494+

signal.addEventListener("abort", abortListener, { once: true });

495+

}),

496+

);

497+

}

498+

await Promise.race(racers);

499+

} finally {

500+

if (timer) {

501+

clearTimeout(timer);

502+

}

503+

if (signal && abortListener) {

504+

signal.removeEventListener("abort", abortListener);

505+

}

506+

}

507+

}

508+509+

async function waitForChromeMcpPendingSession(

510+

pending: Promise<ChromeMcpSession>,

511+

signal?: AbortSignal,

512+

): Promise<ChromeMcpSession> {

513+

if (signal?.aborted) {

514+

throw signal.reason ?? new Error("aborted");

515+

}

516+

if (!signal) {

517+

return await pending;

518+

}

519+520+

let abortListener: (() => void) | undefined;

470521

try {

471-

await Promise.race([

472-

session.ready,

522+

return await Promise.race([

523+

pending,

473524

new Promise<never>((_, reject) => {

474-

timer = setTimeout(() => {

475-

reject(

476-

new BrowserProfileUnavailableError(

477-

`Chrome MCP existing-session attach for profile "${profileName}" timed out after ${timeoutMs}ms.`,

478-

),

479-

);

480-

}, timeoutMs);

525+

abortListener = () => reject(signal.reason ?? new Error("aborted"));

526+

signal.addEventListener("abort", abortListener, { once: true });

481527

}),

482528

]);

483529

} finally {

484-

if (timer) {

485-

clearTimeout(timer);

530+

if (abortListener) {

531+

signal.removeEventListener("abort", abortListener);

486532

}

487533

}

488534

}

489535536+

async function createChromeMcpSession(

537+

profileName: string,

538+

options: NormalizedChromeMcpProfileOptions,

539+

signal?: AbortSignal,

540+

): Promise<ChromeMcpSession> {

541+

const created = (sessionFactory ?? createRealSession)(profileName, options);

542+

try {

543+

const session = await waitForChromeMcpPendingSession(created, signal);

544+

if (signal?.aborted) {

545+

await session.client.close().catch(() => {});

546+

throw signal.reason ?? new Error("aborted");

547+

}

548+

return session;

549+

} catch (err) {

550+

if (signal?.aborted) {

551+

void created.then((session) => session.client.close()).catch(() => {});

552+

}

553+

throw err;

554+

}

555+

}

556+490557

async function getSession(

491558

profileName: string,

492559

profileOptions?: ChromeMcpOptionsInput,

493560

timeoutMs?: number,

561+

signal?: AbortSignal,

494562

): Promise<ChromeMcpSession> {

495563

const options = normalizeChromeMcpOptions(profileOptions);

496564

const cacheKey = buildChromeMcpSessionCacheKey(profileName, options);

@@ -505,7 +573,7 @@ async function getSession(

505573

let pending = pendingSessions.get(cacheKey);

506574

if (!pending) {

507575

pending = (async () => {

508-

const created = await (sessionFactory ?? createRealSession)(profileName, options);

576+

const created = await createChromeMcpSession(profileName, options, signal);

509577

if (pendingSessions.get(cacheKey) === pending) {

510578

sessions.set(cacheKey, created);

511579

} else {

@@ -524,7 +592,7 @@ async function getSession(

524592

}

525593

}

526594

try {

527-

await waitForChromeMcpReady(session, profileName, timeoutMs);

595+

await waitForChromeMcpReady(session, profileName, timeoutMs, signal);

528596

return session;

529597

} catch (err) {

530598

const current = sessions.get(cacheKey);

@@ -539,6 +607,7 @@ async function getExistingSession(

539607

cacheKey: string,

540608

profileName: string,

541609

timeoutMs?: number,

610+

signal?: AbortSignal,

542611

): Promise<ChromeMcpSession | null> {

543612

let session = sessions.get(cacheKey);

544613

if (session && session.transport.pid === null) {

@@ -547,7 +616,7 @@ async function getExistingSession(

547616

}

548617

if (session) {

549618

try {

550-

await waitForChromeMcpReady(session, profileName, timeoutMs);

619+

await waitForChromeMcpReady(session, profileName, timeoutMs, signal);

551620

return session;

552621

} catch (err) {

553622

const current = sessions.get(cacheKey);

@@ -563,9 +632,9 @@ async function getExistingSession(

563632

return null;

564633

}

565634566-

session = await pending;

635+

session = await waitForChromeMcpPendingSession(pending, signal);

567636

try {

568-

await waitForChromeMcpReady(session, profileName, timeoutMs);

637+

await waitForChromeMcpReady(session, profileName, timeoutMs, signal);

569638

return session;

570639

} catch (err) {

571640

const current = sessions.get(cacheKey);

@@ -580,11 +649,12 @@ async function createEphemeralSession(

580649

profileName: string,

581650

profileOptions?: ChromeMcpOptionsInput,

582651

timeoutMs?: number,

652+

signal?: AbortSignal,

583653

): Promise<ChromeMcpSession> {

584654

const options = normalizeChromeMcpOptions(profileOptions);

585-

const session = await (sessionFactory ?? createRealSession)(profileName, options);

655+

const session = await createChromeMcpSession(profileName, options, signal);

586656

try {

587-

await waitForChromeMcpReady(session, profileName, timeoutMs);

657+

await waitForChromeMcpReady(session, profileName, timeoutMs, signal);

588658

return session;

589659

} catch (err) {

590660

await session.client.close().catch(() => {});

@@ -601,15 +671,25 @@ async function leaseSession(

601671

const cacheKey = buildChromeMcpSessionCacheKey(profileName, normalizedProfileOptions);

602672

if (!options.ephemeral) {

603673

return {

604-

session: await getSession(profileName, normalizedProfileOptions, options.timeoutMs),

674+

session: await getSession(

675+

profileName,

676+

normalizedProfileOptions,

677+

options.timeoutMs,

678+

options.signal,

679+

),

605680

cacheKey,

606681

temporary: false,

607682

};

608683

}

609684610685

// Status probes should avoid seeding the shared attach session cache, but they can safely

611686

// reuse a real cached session if one already exists.

612-

const existingSession = await getExistingSession(cacheKey, profileName, options.timeoutMs);

687+

const existingSession = await getExistingSession(

688+

cacheKey,

689+

profileName,

690+

options.timeoutMs,

691+

options.signal,

692+

);

613693

if (existingSession) {

614694

return {

615695

session: existingSession,

@@ -619,7 +699,12 @@ async function leaseSession(

619699

}

620700621701

return {

622-

session: await createEphemeralSession(profileName, normalizedProfileOptions, options.timeoutMs),

702+

session: await createEphemeralSession(

703+

profileName,

704+

normalizedProfileOptions,

705+

options.timeoutMs,

706+

options.signal,

707+

),

623708

cacheKey,

624709

temporary: true,

625710

};