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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
小众软件
小众软件
美团技术团队
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
D
Docker
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
云风的 BLOG
云风的 BLOG
B
Blog
雷峰网
雷峰网
The Cloudflare 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 chat session sync ownership · openclaw/openclaw@7478e6e
joshavant · 2026-06-06 · via Recent Commits to openclaw:main

@@ -72,6 +72,11 @@ public final class OpenClawChatViewModel {

7272

private var lastCompactAt: Date?

7373

private let compactCooldown: TimeInterval = 60

747475+

private enum SessionSwitchIntent {

76+

case userInitiated

77+

case externalSync

78+

}

79+7580

private var pendingToolCallsById: [String: OpenClawChatPendingToolCall] = [:] {

7681

didSet {

7782

self.pendingToolCalls = self.pendingToolCallsById.values

@@ -151,7 +156,11 @@ public final class OpenClawChatViewModel {

151156

}

152157153158

public func switchSession(to sessionKey: String) {

154-

Task { await self.performSwitchSession(to: sessionKey) }

159+

self.applySessionSwitch(to: sessionKey, intent: .userInitiated)

160+

}

161+162+

public func syncSession(to sessionKey: String) {

163+

self.applySessionSwitch(to: sessionKey, intent: .externalSync)

155164

}

156165157166

public func selectThinkingLevel(_ level: String) {

@@ -261,23 +270,34 @@ public final class OpenClawChatViewModel {

261270

self.diagnosticsLog?(message)

262271

}

263272264-

private func bootstrap() async {

273+

private func bootstrap(sessionKey requestedSessionKey: String? = nil) async {

274+

let sessionKey = requestedSessionKey ?? self.sessionKey

275+

guard sessionKey == self.sessionKey else { return }

265276

self.isLoading = true

266277

self.errorText = nil

267278

self.healthOK = false

268279

self.clearPendingRuns(reason: nil)

269280

self.pendingToolCallsById = [:]

270281

self.streamingAssistantText = nil

271282

self.sessionId = nil

272-

defer { self.isLoading = false }

283+

defer {

284+

if self.sessionKey == sessionKey {

285+

self.isLoading = false

286+

}

287+

}

273288

do {

274289

do {

275-

try await self.transport.setActiveSessionKey(self.sessionKey)

290+

try await self.transport.setActiveSessionKey(sessionKey)

276291

} catch {

277292

// Best-effort only; history/send/health still work without push events.

278293

}

294+

guard self.sessionKey == sessionKey else {

295+

await self.restoreActiveSessionAfterStaleBootstrap(staleSessionKey: sessionKey)

296+

return

297+

}

279298280-

let payload = try await self.transport.requestHistory(sessionKey: self.sessionKey)

299+

let payload = try await self.transport.requestHistory(sessionKey: sessionKey)

300+

guard self.sessionKey == sessionKey else { return }

281301

self.messages = Self.reconcileMessageIDs(

282302

previous: self.messages,

283303

incoming: Self.decodeMessages(payload.messages ?? []))

@@ -290,15 +310,37 @@ public final class OpenClawChatViewModel {

290310

}

291311

self.syncThinkingLevelOptions()

292312

await self.pollHealthIfNeeded(force: true)

313+

guard self.sessionKey == sessionKey else { return }

293314

await self.fetchSessions(limit: 50)

315+

guard self.sessionKey == sessionKey else { return }

294316

await self.fetchModels()

317+

guard self.sessionKey == sessionKey else { return }

295318

self.errorText = nil

296319

} catch {

320+

guard self.sessionKey == sessionKey else { return }

297321

self.errorText = error.localizedDescription

298322

chatUILogger.error("bootstrap failed \(error.localizedDescription, privacy: .public)")

299323

}

300324

}

301325326+

private func restoreActiveSessionAfterStaleBootstrap(staleSessionKey: String) async {

327+

var lastSubscribedSessionKey = staleSessionKey

328+

while true {

329+

let currentSessionKey = self.sessionKey

330+

guard currentSessionKey != lastSubscribedSessionKey else { return }

331+

do {

332+

// A stale bootstrap may complete its subscribe side effect after the winning switch.

333+

// Reassert and recheck so push events stay aligned with the visible session.

334+

try await self.transport.setActiveSessionKey(currentSessionKey)

335+

} catch {

336+

// Best-effort only; the current bootstrap still owns history/send/health.

337+

return

338+

}

339+

guard self.sessionKey != currentSessionKey else { return }

340+

lastSubscribedSessionKey = currentSessionKey

341+

}

342+

}

343+302344

private func refreshPendingRunAfterForeground() async {

303345

guard self.pendingRunCount > 0 else { return }

304346

self.logDiagnostic(

@@ -757,14 +799,16 @@ public final class OpenClawChatViewModel {

757799

}

758800

}

759801760-

private func performSwitchSession(to sessionKey: String) async {

802+

private func applySessionSwitch(to sessionKey: String, intent: SessionSwitchIntent) {

761803

let next = sessionKey.trimmingCharacters(in: .whitespacesAndNewlines)

762804

guard !next.isEmpty else { return }

763805

guard next != self.sessionKey else { return }

764806

self.sessionKey = next

765-

self.onSessionChanged?(next)

807+

if intent == .userInitiated {

808+

self.onSessionChanged?(next)

809+

}

766810

self.modelSelectionID = Self.defaultModelSelectionID

767-

await self.bootstrap()

811+

Task { await self.bootstrap(sessionKey: next) }

768812

}

769813770814

private func performStartNewSession() async {