Skip to content

Commit abea573

Browse files
authored
fix: remove asynchronous model for distributed client (#2149)
1 parent 22c92a8 commit abea573

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ def load_cutout(
10641064
def setup_dask(nprocesses: int) -> dict:
10651065
if nprocesses > 1:
10661066
cluster = LocalCluster(n_workers=nprocesses, threads_per_worker=1)
1067-
client = Client(cluster, asynchronous=True)
1067+
client = Client(cluster)
10681068
atexit.register(client.shutdown)
10691069
else:
10701070
client = None

0 commit comments

Comments
 (0)