diff --git a/src/scip/utils/util.py b/src/scip/utils/util.py index dea2b36..1f4f2e1 100644 --- a/src/scip/utils/util.py +++ b/src/scip/utils/util.py @@ -72,7 +72,7 @@ def __enter__(self): with dask.config.set({"distributed.worker.resources.cellpose": 1}): self.cluster = LocalCluster( n_workers=self.n_workers, threads_per_worker=self.threads_per_process, - processes=True + processes=True, dashboard_address=f":{self.port}" ) self.client = Client(self.cluster) elif self.mode == "jobqueue":