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

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
docs: document gateway shutdown session helpers · opencla...
steipete · 2026-06-05 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway shutdown and restart close orchestration.

2+

// Coordinates hooks, drains, sockets, sidecars, plugins, and runtime cleanup.

13

import type { Server as HttpServer } from "node:http";

24

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

35

import type { WebSocketServer } from "ws";

@@ -18,8 +20,6 @@ import {

1820

import type { ChatRunEntry, ChatRunState } from "./server-chat-state.js";

1921

import type { GatewayPostReadySidecarHandle } from "./server-startup-post-attach.js";

2022
21-

// Gateway shutdown/restart close orchestration with bounded drain and cleanup steps.

22-
2323

const shutdownLog = createSubsystemLogger("gateway/shutdown");

2424

const GATEWAY_SHUTDOWN_HOOK_TIMEOUT_MS = 5_000;

2525

const GATEWAY_PRE_RESTART_HOOK_TIMEOUT_MS = 10_000;

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway Control UI root resolver.

2+

// Finds configured, bundled, or source-built UI assets during startup.

13

import path from "node:path";

24

import {

35

ensureControlUiAssetsBuilt,

@@ -8,9 +10,6 @@ import {

810

import type { RuntimeEnv } from "../runtime.js";

911

import type { ControlUiRootState } from "./control-ui.js";

1012
11-

// Control UI root resolution prefers explicit config, then bundled/proven

12-

// assets. Missing bundled assets trigger an async build attempt without blocking

13-

// gateway startup.

1413

function startControlUiAssetsBuild(params: {

1514

gatewayRuntime: RuntimeEnv;

1615

log: { warn: (message: string) => void };

Original file line numberDiff line numberDiff line change

@@ -1,11 +1,11 @@

1+

// Gateway cron lazy loader.

2+

// Defers scheduler startup until cron is touched by runtime or API handlers.

13

import type { CliDeps } from "../cli/deps.types.js";

24

import type { OpenClawConfig } from "../config/types.openclaw.js";

35

import type { CronServiceContract } from "../cron/service-contract.js";

46

import { resolveCronJobsStorePath } from "../cron/store.js";

57

import type { GatewayCronState } from "./server-cron.js";

68
7-

// Gateway cron is loaded lazily so startup/tests that never touch cron do not

8-

// materialize scheduler loops or bundled plugin runtime.

99

type LazyGatewayCronParams = {

1010

cfg: OpenClawConfig;

1111

deps: CliDeps;

@@ -29,6 +29,8 @@ export function createLazyGatewayCronState(params: LazyGatewayCronParams): Gatew

2929

if (loaded) {

3030

return loaded;

3131

}

32+

// Share the same import promise across concurrent API calls so only one

33+

// scheduler instance is built for a Gateway process.

3234

loading ??= import("./server-cron.js").then(({ buildGatewayCronService }) => {

3335

loaded = {

3436

state: buildGatewayCronService(params),

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway maintenance timers.

2+

// Starts periodic health, dedupe, abort, and media cleanup loops.

13

import { isFutureDateTimestampMs } from "@openclaw/normalization-core/number-coercion";

24

import type { HealthSummary } from "../commands/health.js";

35

import { sweepStaleRunContexts } from "../infra/agent-events.js";

@@ -128,6 +130,8 @@ export function startGatewayMaintenanceTimers(params: {

128130

return isFutureDateTimestampMs(expiresAtMs, { nowMs: now });

129131

};

130132

const isActiveRunDedupeKey = (key: string, dedupeEntry: DedupeEntry) => {

133+

// Keep idempotency records for active runs so retries cannot create

134+

// duplicate chat/agent work while a command is still draining.

131135

if (!key.startsWith("agent:") && !key.startsWith("chat:")) {

132136

return false;

133137

}

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Gateway session event broadcaster.

2+

// Projects transcript and lifecycle updates to websocket subscribers.

13

import { asPositiveSafeInteger } from "@openclaw/normalization-core/number-coercion";

24

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

35

import { resolveDefaultAgentId } from "../agents/agent-scope.js";

@@ -20,10 +22,6 @@ import {

2022

type GatewaySessionRow,

2123

} from "./session-utils.js";

2224
23-

// Session event broadcasting bridges transcript/lifecycle stores to live

24-

// Gateway websocket subscribers. Message updates go to session-specific

25-

// subscribers plus broad session listeners; non-display messages still trigger

26-

// sessions.changed so lists refresh.

2725

type SessionEventSubscribers = Pick<SessionEventSubscriberRegistry, "getAll">;

2826

type SessionMessageSubscribers = Pick<SessionMessageSubscriberRegistry, "get">;

2927
Original file line numberDiff line numberDiff line change

@@ -1,8 +1,8 @@

1+

// Gateway shared-auth generation enforcement.

2+

// Disconnects clients when config writes invalidate shared credentials.

13

import type { OpenClawConfig } from "../config/types.openclaw.js";

24

import { resolveGatewayReloadSettings } from "./config-reload-settings.js";

35
4-

// Tracks shared Gateway auth generations across config writes and reload modes.

5-
66

/** Gateway client subset relevant to shared auth generation enforcement. */

77

export type SharedGatewayAuthClient = {

88

usesSharedGatewayAuth?: boolean;

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Filesystem session transcript helpers.

2+

// Resolves, archives, and cleans up transcript files owned by Gateway sessions.

13

import fs from "node:fs";

24

import os from "node:os";

35

import path from "node:path";

@@ -118,6 +120,8 @@ export function resolveSessionTranscriptCandidates(

118120

}

119121

}

120122
123+

// Keep the legacy global sessions directory as a final candidate so tagged

124+

// upgrades can still find transcripts created before per-agent paths.

121125

const home = resolveRequiredHomeDir(process.env, os.homedir);

122126

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

123127

pushCandidate(() => resolveSessionTranscriptPathInDir(sessionId, legacyDir));

Original file line numberDiff line numberDiff line change

@@ -1,3 +1,5 @@

1+

// Session transcript key resolver.

2+

// Maps transcript file paths back to Gateway session keys for live broadcasts.

13

import { getRuntimeConfig } from "../config/io.js";

24

import type { SessionEntry } from "../config/sessions/types.js";

35

import type { OpenClawConfig } from "../config/types.openclaw.js";

@@ -38,10 +40,12 @@ function sessionKeyMatchesTranscriptPath(params: {

3840

).some((candidate) => resolveTranscriptPathForComparison(candidate) === params.targetPath);

3941

}

4042
43+

/** Clears the transcript path lookup cache for isolated tests. */

4144

export function clearSessionTranscriptKeyCacheForTests(): void {

4245

TRANSCRIPT_SESSION_KEY_CACHE.clear();

4346

}

4447
48+

/** Resolve the most likely Gateway session key for a transcript file path. */

4549

export function resolveSessionKeyForTranscriptFile(sessionFile: string): string | undefined {

4650

const targetPath = resolveTranscriptPathForComparison(sessionFile);

4751

if (!targetPath) {

@@ -81,6 +85,8 @@ export function resolveSessionKeyForTranscriptFile(sessionFile: string): string

8185

}

8286
8387

if (matchingEntries.length > 0) {

88+

// Multiple keys can point at copied/forked transcript paths. Prefer the

89+

// freshest unambiguous session ID group; ties stay unresolved.

8490

const matchesBySessionId = new Map<string, Array<[string, SessionEntry]>>();

8591

for (const entry of matchingEntries) {

8692

const sessionId = entry[1].sessionId;