Closed tmolteno closed 4 years ago
In the examples directory, the code for the scheduler_context uses the old version of the syntax for setting the scheduler.
Old Syntax: dask.set_options(get=dask.threads.get) New Syntax: dask.config.set(scheduler='threads')
dask.set_options(get=dask.threads.get)
dask.config.set(scheduler='threads')
Thanks for the report @tmolteno. I should probably add some test cases that ensure that the examples run through.
Closed by #78
In the examples directory, the code for the scheduler_context uses the old version of the syntax for setting the scheduler.
Old Syntax:
dask.set_options(get=dask.threads.get)
New Syntax:dask.config.set(scheduler='threads')