8000 Revert changes made in #3358 by rdoyle45 · Pull Request #3411 · pydata/xarray · GitHub
[go: up one dir, main page]

Skip to content

Revert changes made in #3358 #3411

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

Merged
merged 7 commits into from
Oct 21, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revision
  • Loading branch information
rdoyle45 authored Oct 17, 2019
commit 5bd1c573b04a92fbc334548a7229c687e5c79017
2 changes: 2 additions & 0 deletions xarray/backends/locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ def _get_scheduler(get=None, collection=None):
try:
if actual_get is dask.multiprocessing.get:
return "multiprocessing"
else:
return "threaded"
except (AttributeError):
return "threaded"

Expand Down
0