You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(miner): include four durable stores in doctor and migrate sweeps
governor-state, attempt-log, replay-snapshot, and worktree-allocator were only migrated lazily; keep storeIntegrityChecks and migrate STORES in sync at eleven entries.
Co-authored-by: Cursor <cursoragent@cursor.com>
Copy file name to clipboardExpand all lines: test/unit/miner-migrate-cli.test.ts
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,10 @@ const STORE_NAMES = [
24
24
"claim-ledger",
25
25
"run-state",
26
26
"plan-store",
27
+
"governor-state",
28
+
"attempt-log",
29
+
"replay-snapshot",
30
+
"worktree-allocator",
27
31
];
28
32
29
33
afterEach(()=>{
@@ -32,11 +36,13 @@ afterEach(() => {
32
36
});
33
37
34
38
describe("loopover-miner migrate (#4871)",()=>{
35
-
it("covers the exact same seven stores doctor's store-integrity sweep covers, in the same order, and skips every one when nothing has been created yet",()=>{
39
+
it("covers the exact same eleven stores doctor's store-integrity sweep covers, in the same order, and skips every one when nothing has been created yet",()=>{
0 commit comments