Skip to content

Commit

Permalink
Merge pull request #114 from arnaudon/fix_local_dir
Browse files Browse the repository at this point in the history
Fix: Make local_directory None by default
  • Loading branch information
kmpaul authored Nov 29, 2023
2 parents 9103d15 + 53da747 commit 37fd9a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dask_mpi/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
def initialize(
interface=None,
nthreads=1,
local_directory="",
local_directory=None,
memory_limit="auto",
nanny=False,
dashboard=True,
Expand Down Expand Up @@ -42,7 +42,7 @@ def initialize(
Network interface like 'eth0' or 'ib0'
nthreads : int
Number of threads per worker
local_directory : str
local_directory : str or None
Directory to place worker files
memory_limit : int, float, or 'auto'
Number of bytes before spilling data to disk. This can be an
Expand Down

0 comments on commit 37fd9a7

Please sign in to comment.