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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow 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(gateway): consolidate lifecycle lazy boundary (#...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -15,48 +15,12 @@ const UPDATE_RESPAWN_HEALTH_POLL_MS = 200;

1515

type GatewayRunSignalAction = "stop" | "restart";

1616

type RestartDrainTimeoutMs = number | undefined;

171718-

type EmbeddedRunsModule = typeof import("../../agents/pi-embedded-runner/runs.js");

19-

type RuntimeConfigModule = typeof import("../../config/config.js");

20-

type ProcessRespawnModule = typeof import("../../infra/process-respawn.js");

21-

type RestartSentinelModule = typeof import("../../infra/restart-sentinel.js");

22-

type RestartModule = typeof import("../../infra/restart.js");

23-

type SupervisorMarkersModule = typeof import("../../infra/supervisor-markers.js");

24-

type DiagnosticStabilityBundleModule =

25-

typeof import("../../logging/diagnostic-stability-bundle.js");

26-

type BundledRuntimeDepsActivityModule =

27-

typeof import("../../plugins/bundled-runtime-deps-activity.js");

28-

type CommandQueueModule = typeof import("../../process/command-queue.js");

29-

type RuntimeInternalModule = typeof import("../../tasks/runtime-internal.js");

18+

type GatewayLifecycleRuntimeModule = typeof import("./lifecycle.runtime.js");

301931-

let embeddedRunsModule: Promise<EmbeddedRunsModule> | undefined;

32-

let runtimeConfigModule: Promise<RuntimeConfigModule> | undefined;

33-

let processRespawnModule: Promise<ProcessRespawnModule> | undefined;

34-

let restartSentinelModule: Promise<RestartSentinelModule> | undefined;

35-

let restartModule: Promise<RestartModule> | undefined;

36-

let supervisorMarkersModule: Promise<SupervisorMarkersModule> | undefined;

37-

let diagnosticStabilityBundleModule: Promise<DiagnosticStabilityBundleModule> | undefined;

38-

let bundledRuntimeDepsActivityModule: Promise<BundledRuntimeDepsActivityModule> | undefined;

39-

let commandQueueModule: Promise<CommandQueueModule> | undefined;

40-

let runtimeInternalModule: Promise<RuntimeInternalModule> | undefined;

20+

let gatewayLifecycleRuntimeModule: Promise<GatewayLifecycleRuntimeModule> | undefined;

412142-

const loadEmbeddedRunsModule = () =>

43-

(embeddedRunsModule ??= import("../../agents/pi-embedded-runner/runs.js"));

44-

const loadRuntimeConfigModule = () => (runtimeConfigModule ??= import("../../config/config.js"));

45-

const loadProcessRespawnModule = () =>

46-

(processRespawnModule ??= import("../../infra/process-respawn.js"));

47-

const loadRestartSentinelModule = () =>

48-

(restartSentinelModule ??= import("../../infra/restart-sentinel.js"));

49-

const loadRestartModule = () => (restartModule ??= import("../../infra/restart.js"));

50-

const loadSupervisorMarkersModule = () =>

51-

(supervisorMarkersModule ??= import("../../infra/supervisor-markers.js"));

52-

const loadDiagnosticStabilityBundleModule = () =>

53-

(diagnosticStabilityBundleModule ??= import("../../logging/diagnostic-stability-bundle.js"));

54-

const loadBundledRuntimeDepsActivityModule = () =>

55-

(bundledRuntimeDepsActivityModule ??= import("../../plugins/bundled-runtime-deps-activity.js"));

56-

const loadCommandQueueModule = () =>

57-

(commandQueueModule ??= import("../../process/command-queue.js"));

58-

const loadRuntimeInternalModule = () =>

59-

(runtimeInternalModule ??= import("../../tasks/runtime-internal.js"));

22+

const loadGatewayLifecycleRuntimeModule = () =>

23+

(gatewayLifecycleRuntimeModule ??= import("./lifecycle.runtime.js"));

60246125

function createRestartIterationHook(onRestart: () => Promise<void> | void): () => Promise<boolean> {

6226

let isFirstIteration = true;

@@ -137,7 +101,7 @@ export async function runGatewayLoop(params: {

137101

};

138102

const writeStabilityBundle = async (reason: string, error?: unknown) => {

139103

const { writeDiagnosticStabilityBundleForFailureSync } =

140-

await loadDiagnosticStabilityBundleModule();

104+

await loadGatewayLifecycleRuntimeModule();

141105

const result = writeDiagnosticStabilityBundleForFailureSync(reason, error);

142106

if ("message" in result) {

143107

gatewayLog.warn(result.message);

@@ -165,10 +129,12 @@ export async function runGatewayLoop(params: {

165129

const handleRestartAfterServerClose = async (restartReason?: string) => {

166130

const hadLock = await releaseLockIfHeld();

167131

const isUpdateRestart = restartReason === "update.run";

168-

const { respawnGatewayProcessForUpdate, restartGatewayProcessWithFreshPid } =

169-

await loadProcessRespawnModule();

170-

const { detectRespawnSupervisor } = await loadSupervisorMarkersModule();

171-

const { markUpdateRestartSentinelFailure } = await loadRestartSentinelModule();

132+

const {

133+

detectRespawnSupervisor,

134+

markUpdateRestartSentinelFailure,

135+

respawnGatewayProcessForUpdate,

136+

restartGatewayProcessWithFreshPid,

137+

} = await loadGatewayLifecycleRuntimeModule();

172138173139

if (isUpdateRestart) {

174140

const respawn = respawnGatewayProcessForUpdate();

@@ -279,10 +245,8 @@ export async function runGatewayLoop(params: {

279245

const SHUTDOWN_TIMEOUT_MS = SUPERVISOR_STOP_TIMEOUT_MS - 5_000;

280246

const resolveRestartDrainTimeoutMs = async (): Promise<RestartDrainTimeoutMs> => {

281247

try {

282-

const [{ getRuntimeConfig }, { resolveGatewayRestartDeferralTimeoutMs }] = await Promise.all([

283-

loadRuntimeConfigModule(),

284-

loadRestartModule(),

285-

]);

248+

const { getRuntimeConfig, resolveGatewayRestartDeferralTimeoutMs } =

249+

await loadGatewayLifecycleRuntimeModule();

286250

const timeoutMs = getRuntimeConfig().gateway?.reload?.deferralTimeoutMs;

287251

return resolveGatewayRestartDeferralTimeoutMs(timeoutMs);

288252

} catch {

@@ -351,15 +315,16 @@ export async function runGatewayLoop(params: {

351315

// On restart, wait for in-flight agent turns to finish before

352316

// tearing down the server so buffered messages are delivered.

353317

if (isRestart) {

354-

const [

355-

{ abortEmbeddedPiRun, getActiveEmbeddedRunCount, waitForActiveEmbeddedRuns },

356-

{ getActiveBundledRuntimeDepsInstallCount, waitForBundledRuntimeDepsInstallIdle },

357-

{ getActiveTaskCount, markGatewayDraining, waitForActiveTasks },

358-

] = await Promise.all([

359-

loadEmbeddedRunsModule(),

360-

loadBundledRuntimeDepsActivityModule(),

361-

loadCommandQueueModule(),

362-

]);

318+

const {

319+

abortEmbeddedPiRun,

320+

getActiveBundledRuntimeDepsInstallCount,

321+

getActiveEmbeddedRunCount,

322+

getActiveTaskCount,

323+

markGatewayDraining,

324+

waitForActiveEmbeddedRuns,

325+

waitForActiveTasks,

326+

waitForBundledRuntimeDepsInstallIdle,

327+

} = await loadGatewayLifecycleRuntimeModule();

363328

const createStillPendingDrainLogger = () =>

364329

setInterval(() => {

365330

gatewayLog.warn(

@@ -429,7 +394,7 @@ export async function runGatewayLoop(params: {

429394

const onSigterm = () => {

430395

gatewayLog.info("signal SIGTERM received");

431396

void (async () => {

432-

const { consumeGatewayRestartIntentSync } = await loadRestartModule();

397+

const { consumeGatewayRestartIntentSync } = await loadGatewayLifecycleRuntimeModule();

433398

request(consumeGatewayRestartIntentSync() ? "restart" : "stop", "SIGTERM");

434399

})();

435400

};

@@ -446,7 +411,7 @@ export async function runGatewayLoop(params: {

446411

markGatewaySigusr1RestartHandled,

447412

peekGatewaySigusr1RestartReason,

448413

scheduleGatewaySigusr1Restart,

449-

} = await loadRestartModule();

414+

} = await loadGatewayLifecycleRuntimeModule();

450415

const authorized = consumeGatewaySigusr1RestartAuthorization();

451416

if (!authorized) {

452417

if (!isGatewaySigusr1RestartExternallyAllowed()) {

@@ -482,15 +447,11 @@ export async function runGatewayLoop(params: {

482447

// new work from draining. The same boundary also discards stale restart

483448

// deferral timers and reloads the task registry from durable state so

484449

// cancelled/completed work is not kept alive by old in-memory maps.

485-

const [

486-

{ resetAllLanes },

487-

{ resetGatewayRestartStateForInProcessRestart },

488-

{ reloadTaskRegistryFromStore },

489-

] = await Promise.all([

490-

loadCommandQueueModule(),

491-

loadRestartModule(),

492-

loadRuntimeInternalModule(),

493-

]);

450+

const {

451+

reloadTaskRegistryFromStore,

452+

resetAllLanes,

453+

resetGatewayRestartStateForInProcessRestart,

454+

} = await loadGatewayLifecycleRuntimeModule();

494455

resetAllLanes();

495456

resetGatewayRestartStateForInProcessRestart();

496457

reloadTaskRegistryFromStore();