mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 22:54:33 +00:00
fix(stability): patch regex retries and timeout abort handling
This commit is contained in:
committed by
Peter Steinberger
parent
99a2f5379e
commit
1051f42f96
@@ -806,7 +806,7 @@ export async function updateSessionStoreEntry(params: {
|
||||
}): Promise<SessionEntry | null> {
|
||||
const { storePath, sessionKey, update } = params;
|
||||
return await withSessionStoreLock(storePath, async () => {
|
||||
const store = loadSessionStore(storePath);
|
||||
const store = loadSessionStore(storePath, { skipCache: true });
|
||||
const existing = store[sessionKey];
|
||||
if (!existing) {
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user