Keep monitoring side tasks after one returns cleanly - #1605
Open
Sanjays2402 wants to merge 1 commit into
Open
Conversation
_monitor_side_tasks awaited asyncio.wait(..., FIRST_COMPLETED) once and only acted when a completed task had raised. A side task that returned cleanly therefore ended supervision of every other side task for the rest of the worker's life. This is the normal path, not an edge case: PeriodicDeferrer.worker() returns immediately when no periodic task is registered, so any app without periodic tasks loses side-task supervision at startup and a later listener or heartbeat failure no longer stops the worker. The monitor now loops over the remaining pending tasks until one fails or all of them have finished, skipping cancelled tasks. Adds a regression test in tests/unit/test_worker.py asserting the worker is stopped by a side task that fails after another one returned cleanly. Closes procrastinate-org#1597
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughChangesSide-task supervision
Estimated code review effort: 2 (Simple) | ~10 minutes Suggested reviewers: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #1597
_monitor_side_tasksawaitedasyncio.wait(..., FIRST_COMPLETED)once and only acted when a completed task had raised, so a side task that returned cleanly silently ended supervision of all the others. That is the normal path rather than an edge case:PeriodicDeferrer.worker()returns immediately when no periodic task is registered, so any app without periodic tasks loses side-task supervision at startup and a later listener/heartbeat failure no longer stops the worker. The monitor now loops over the remaining pending tasks until one fails or all have finished.This change was prepared with AI assistance; the regression test was run locally and fails without the fix.
Successful PR Checklist:
PR label(s):
Summary by CodeRabbit
Bug Fixes
Tests