-
-
Notifications
You must be signed in to change notification settings - Fork 718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use IO task marker in scheduling #8950
base: main
Are you sure you want to change the base?
Conversation
Unit Test ResultsSee test report for an extended history of previous test failures. This is useful for diagnosing flaky tests. 21 files - 6 21 suites - 6 9h 24m 43s ⏱️ - 2h 1m 38s For more details on these failures, see this check. Results for commit 2514021. ± Comparison against base commit 8f1b241. This pull request skips 4 tests.
♻️ This comment has been updated with latest results. |
while not s.tasks: | ||
await asyncio.sleep(0.01) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while not s.tasks: | |
await asyncio.sleep(0.01) | |
await async_poll_for(lambda: s.tasks, 5) |
Companion PR to dask/dask#11558 where we incorporate the new
io_task
attribute into our scheduling logic