Skip to content

Commit

Permalink
Disable Block Allocation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Nov 1, 2024
1 parent 2c5279d commit ca09b5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions executorlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(
flux_executor_nesting: bool = False,
pysqa_config_directory: Optional[str] = None,
hostname_localhost: Optional[bool] = None,
block_allocation: bool = True,
block_allocation: bool = False,
init_function: Optional[callable] = None,
disable_dependencies: bool = False,
refresh_rate: float = 0.01,
Expand All @@ -114,7 +114,7 @@ def __new__(
flux_executor_nesting: bool = False,
pysqa_config_directory: Optional[str] = None,
hostname_localhost: Optional[bool] = None,
block_allocation: bool = True,
block_allocation: bool = False,
init_function: Optional[callable] = None,
disable_dependencies: bool = False,
refresh_rate: float = 0.01,
Expand Down

0 comments on commit ca09b5c

Please sign in to comment.