Skip to content

Commit b2c152e

Browse files
sjarmakclaude
andcommitted
fix: skip __aborted run directories in aggregate_status scanner
The aborted design run (design_haiku_20260223_123238__aborted) was still being scanned, producing a spurious docker_compose_fail error for a task that succeeded in the current run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f1cb455 commit b2c152e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/aggregate_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
# __v1_hinted: old run dirs from before enterprise task de-hinting (US-001..US-003).
5151
# Appended to batch dir names after reruns complete so pre-redesign data is excluded.
52-
SKIP_PATTERNS = ["__broken_verifier", "validation_test", "archive", "__v1_hinted"]
52+
SKIP_PATTERNS = ["__broken_verifier", "validation_test", "archive", "__v1_hinted", "__aborted"]
5353

5454
DIR_PREFIX_TO_SUITE = {
5555
# SDLC phase suite prefixes (new naming: {phase}_{model}_{timestamp})

0 commit comments

Comments
 (0)