[V3-GAP] blackout queue 포화 시 intent 유실 #371
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
블랙아웃 큐가 포화되면 order intent를 드롭한다. 이는 REQ-V3-004("블랙아웃 중 신호 Queue 적재")와 충돌한다.
Evidence
src/core/blackout_manager.py:84-85src/main.py:984-991Problem
블랙아웃 구간에서 신호 유실이 발생해 복구 후 재평가 대상이 누락될 수 있다.
Scope
src/core/blackout_manager.pysrc/main.pytests/test_main.py,tests/test_blackout_manager.pydocs/ouroboros/01_requirements_registry.md,docs/ouroboros/80_implementation_audit.mdAcceptance Criteria
이슈 검토 결과 (Claude Code 자동 리뷰)
등록 적합성: ✅ 적합
Evidence 코드 검증 완료:
blackout_manager.py:84-85:enqueue()에서 큐 포화 시return False확인main.py:984-991: 반환값False이면 드롭 로그 후 의도를 버리는 코드 확인REQ-V3-004('블랙아웃 중 신호 Queue 적재')와의 충돌이 명확합니다. AC에서 디스크 스풀/oldest-drop/fail-stop 중 정책을 선택해야 한다는 설계 결정 사항을 명시한 점이 적절합니다.