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

推荐订阅源

Y
Y Combinator Blog
IT之家
IT之家
博客园_首页
人人都是产品经理
人人都是产品经理
博客园 - Franky
I
InfoQ
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
aimingoo的专栏
aimingoo的专栏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
月光博客
月光博客
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
雷峰网
雷峰网
博客园 - 聂微东
N
Netflix TechBlog - Medium
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
D
Docker

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(proxy): close cached SQLite stores by path · openclaw...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -52,6 +52,27 @@ describe("DebugProxyCaptureStore", () => {

5252

expect(reopened.isClosed).toBe(false);

5353

});

5454
55+

it("tracks and closes cached stores independently across paths", () => {

56+

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-proxy-capture-paths-"));

57+

cleanupDirs.push(root);

58+

const first = acquireDebugProxyCaptureStore(

59+

path.join(root, "first.sqlite"),

60+

path.join(root, "first-blobs"),

61+

);

62+

const second = acquireDebugProxyCaptureStore(

63+

path.join(root, "second.sqlite"),

64+

path.join(root, "second-blobs"),

65+

);

66+
67+

first.release();

68+

expect(first.store.isClosed).toBe(true);

69+

expect(second.store.isClosed).toBe(false);

70+
71+

closeDebugProxyCaptureStore();

72+

expect(second.store.isClosed).toBe(true);

73+

second.release();

74+

});

75+
5576

it("uses rollback journaling for captures on NFS-backed volumes", () => {

5677

const root = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-proxy-capture-nfs-"));

5778

cleanupDirs.push(root);

Original file line numberDiff line numberDiff line change

@@ -479,28 +479,29 @@ export class DebugProxyCaptureStore {

479479

}

480480

}

481481
482-

let cachedStore: DebugProxyCaptureStore | null = null;

483-

let cachedKey = "";

484-

let cachedStoreLeases = 0;

482+

type CachedStoreEntry = {

483+

store: DebugProxyCaptureStore;

484+

leases: number;

485+

};

486+
487+

const cachedStores = new Map<string, CachedStoreEntry>();

485488
486489

export function getDebugProxyCaptureStore(dbPath: string, blobDir: string): DebugProxyCaptureStore {

487490

const key = `${dbPath}:${blobDir}`;

488-

if (!cachedStore || cachedStore.isClosed || cachedKey !== key) {

489-

cachedStore = new DebugProxyCaptureStore(dbPath, blobDir);

490-

cachedKey = key;

491-

cachedStoreLeases = 0;

491+

const cached = cachedStores.get(key);

492+

if (cached && !cached.store.isClosed) {

493+

return cached.store;

492494

}

493-

return cachedStore;

495+

const store = new DebugProxyCaptureStore(dbPath, blobDir);

496+

cachedStores.set(key, { store, leases: 0 });

497+

return store;

494498

}

495499
496500

export function closeDebugProxyCaptureStore(): void {

497-

if (!cachedStore) {

498-

return;

501+

for (const cached of cachedStores.values()) {

502+

cached.store.close();

499503

}

500-

cachedStore.close();

501-

cachedStore = null;

502-

cachedKey = "";

503-

cachedStoreLeases = 0;

504+

cachedStores.clear();

504505

}

505506
506507

// Lease API keeps one cached synchronous SQLite connection alive across related

@@ -509,9 +510,13 @@ export function acquireDebugProxyCaptureStore(

509510

dbPath: string,

510511

blobDir: string,

511512

): { store: DebugProxyCaptureStore; release: () => void } {

513+

const key = `${dbPath}:${blobDir}`;

512514

const store = getDebugProxyCaptureStore(dbPath, blobDir);

513-

const key = cachedKey;

514-

cachedStoreLeases += 1;

515+

const cached = cachedStores.get(key);

516+

if (!cached || cached.store !== store) {

517+

throw new Error("debug proxy capture store cache changed while acquiring a lease");

518+

}

519+

cached.leases += 1;

515520

let released = false;

516521

return {

517522

store,

@@ -520,9 +525,14 @@ export function acquireDebugProxyCaptureStore(

520525

return;

521526

}

522527

released = true;

523-

cachedStoreLeases = Math.max(0, cachedStoreLeases - 1);

524-

if (cachedStoreLeases === 0 && cachedStore === store && cachedKey === key) {

525-

closeDebugProxyCaptureStore();

528+

const current = cachedStores.get(key);

529+

if (!current || current.store !== store) {

530+

return;

531+

}

532+

current.leases = Math.max(0, current.leases - 1);

533+

if (current.leases === 0) {

534+

current.store.close();

535+

cachedStores.delete(key);

526536

}

527537

},

528538

};