We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6af46a commit 46d1243Copy full SHA for 46d1243
1 file changed
gitnexus/src/cli/analyze.ts
@@ -431,6 +431,9 @@ const RECOMMENDED_LBUG_CHECKPOINT_THRESHOLD = 64 * 1024 * 1024;
431
// We only match checkpoint-rotation shapes:
432
// - "<db>.wal -> <db>.wal.checkpoint" rename failures
433
// - "<db>.wal.checkpoint" remove failures
434
+// Example matches:
435
+// "Runtime exception: IO exception: Error renaming file /x/lbug.wal to /x/lbug.wal.checkpoint. ErrorMessage: Permission denied"
436
+// "Runtime exception: IO exception: Error removing directory or file /x/lbug.wal.checkpoint. Error Message: Permission denied"
437
// Matching is case-insensitive to remain robust across wrappers/platforms.
438
const LBUG_CHECKPOINT_RENAME_RE =
439
/^runtime exception: io exception:\s*error renaming file\s+.+?\.wal\s+to\s+.+?\.wal\.checkpoint(?:\.|\s|$)/i;
0 commit comments