Merge pull request #3797 from iamjr15/fix/idle-processor-event-race

Fix asyncio.Event race conditions in idle processors
This commit is contained in:
Aleix Conchillo Flaqué
2026-04-09 16:04:03 -07:00
committed by GitHub
3 changed files with 106 additions and 2 deletions

1
changelog/3796.fixed.md Normal file
View File

@@ -0,0 +1 @@
- Fixed `IdleFrameProcessor` where `asyncio.Event` was unconditionally cleared in a `finally` block instead of only on the success path.