-
-
Notifications
You must be signed in to change notification settings - Fork 719
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
distributed.Client.register_worker_plugin
silently discards **kwargs
#5698
Comments
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 25, 2022
3 tasks
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 25, 2022
Thanks @graingert. Raising an error if the plugin is a |
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 25, 2022
fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 25, 2022
fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 25, 2022
fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 26, 2022
…er_scheduler_plugin fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 26, 2022
…er_scheduler_plugin fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Jan 27, 2022
…er_scheduler_plugin fail if unused kwargs are passed Fixes dask#5698
graingert
added a commit
to graingert/distributed
that referenced
this issue
Feb 3, 2022
…er_scheduler_plugin fail if unused kwargs are passed Fixes dask#5698
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What happened:
An issue was raised in slack regarding
UploadPlugin
failing to update thesys.path
or restart workers. It was clear from the example code thatupdate_path=True
andrestart=True
, however thesekwargs
are actually ignored because a plugin instance was passed instead of a class.Minimal Complete Verifiable Example:
results in:
for this case the fix is to apply the kwargs directly to
UploadDirectory
:The text was updated successfully, but these errors were encountered: