Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

'Client' object has no attribute 'start_workers' #12

Closed
basnijholt opened this issue Jan 18, 2017 · 1 comment
Closed

'Client' object has no attribute 'start_workers' #12

basnijholt opened this issue Jan 18, 2017 · 1 comment

Comments

@basnijholt
Copy link
Contributor

basnijholt commented Jan 18, 2017

In the README the following is written

from dask_drmaa import DRMAACluster
cluster = DRMAACluster()

from dask.distributed import Client
client = Client(cluster)
client.start_workers(2)

However, this leads to: AttributeError: 'Client' object has no attribute 'start_workers'

What does work is:

from dask_drmaa import DRMAACluster
cluster = DRMAACluster()
cluster.start_workers(10) 

Don't know if this is incorrect in the README or a bug. I use PBS.

@mrocklin
Copy link
Member

mrocklin commented Jan 18, 2017 via email

basnijholt added a commit to basnijholt/dask-drmaa that referenced this issue Jan 19, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants