8f46645123
CI / push-validation (pull_request) Successful in 30s
CI / helm (pull_request) Successful in 37s
CI / build (pull_request) Successful in 51s
CI / lint (pull_request) Failing after 1m5s
CI / quality (pull_request) Successful in 1m29s
CI / typecheck (pull_request) Successful in 1m35s
CI / security (pull_request) Successful in 1m35s
CI / benchmark-publish (pull_request) Has been skipped
CI / benchmark-regression (pull_request) Failing after 1m3s
CI / e2e_tests (pull_request) Successful in 3m44s
CI / integration_tests (pull_request) Successful in 3m49s
CI / unit_tests (pull_request) Failing after 6m32s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 16s
Added threading.Lock to prevent race conditions in _catalog_cache dict. Two concurrent threads calling _catalog() while cache was stale could both walk the filesystem and write results simultaneously, causing partial dict updates or RuntimeError on concurrent iteration. Changes: - Added import threading and from threading import Lock - Added _catalog_lock: Lock = threading.Lock() at module level - Wrapped entire _catalog() body in with _catalog_lock: for atomic access - Added 4 BDD scenarios in tdd_reference_parser_catalog_lock.feature - Updated CHANGELOG.md with fix entry under [Unreleased] > Fixed - Updated CONTRIBUTORS.md with contribution entry ISSUES CLOSED: #7590