You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.
On Wed, Jan 18, 2017 at 3:41 AM, Bas Nijholt ***@***.***> wrote:
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 BTW.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#12>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AASszJAVqPUaMeuTJWKPbV-YJfl_Jt72ks5rTdAzgaJpZM4Lmm6X>
.
basnijholt
added a commit
to basnijholt/dask-drmaa
that referenced
this issue
Jan 19, 2017
In the
README
the following is writtenHowever, this leads to:
AttributeError: 'Client' object has no attribute 'start_workers'
What does work is:
Don't know if this is incorrect in the
README
or a bug. I use PBS.The text was updated successfully, but these errors were encountered: