-
-
Notifications
You must be signed in to change notification settings - Fork 734
deprecate the io_loop and loop kwarg to Server, Worker, and Nanny #6473
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
deprecate the io_loop and loop kwarg to Server, Worker, and Nanny #6473
Conversation
passing anything other than IOLoop.current() is already unsupported: see dask#6443 (comment)
Unit Test Results 15 files ±0 15 suites ±0 6h 30m 4s ⏱️ + 23m 8s For more details on these failures, see this check. Results for commit 476f40b. ± Comparison against base commit 715d7be. ♻️ This comment has been updated with latest results. |
Fine by me. cc @jacobtomlinson to keep him in the loop |
distributed/utils_test.py
Outdated
if loop is not None: | ||
warnings.warn("the loop kwarg to start_cluster is deprecated") |
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.
Since this is an internal test function, it seems better to me to just remove the argument now without a deprecation warning.
Co-authored-by: Gabe Joseph <gjoseph92@gmail.com>
12ace1f
to
476f40b
Compare
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.
Pending green-ish CI, we're good to go
passing anything other than IOLoop.current() is already unsupported: see #6443 (comment)
Refs #6163
pre-commit run --all-files