From ddec3c9c7b5a5d3cb3b806ff25ee36ef640d8dda Mon Sep 17 00:00:00 2001 From: James Bourbeau Date: Wed, 9 Jun 2021 11:16:12 -0500 Subject: [PATCH] Update `dask_cuda` usage in `SSHCluster` docstring (#4894) --- distributed/deploy/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/deploy/ssh.py b/distributed/deploy/ssh.py index a70a7ca50c..64452c3172 100644 --- a/distributed/deploy/ssh.py +++ b/distributed/deploy/ssh.py @@ -302,7 +302,7 @@ def SSHCluster( ... ["localhost", "hostwithgpus", "anothergpuhost"], ... connect_options={"known_hosts": None}, ... scheduler_options={"port": 0, "dashboard_address": ":8797"}, - ... worker_module='dask_cuda.dask_cuda_worker') + ... worker_module="dask_cuda.cli.dask_cuda_worker") >>> client = Client(cluster) See Also