Skip to content

Commit

Permalink
set default concurrency to None for backwards compatibility
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Dittamo <[email protected]>
  • Loading branch information
pvditt committed Apr 10, 2024
1 parent 451fd03 commit 8a8f4fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flytekit/core/array_node_map_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def _raw_execute(self, **kwargs) -> Any:

def map_task(
task_function: PythonFunctionTask,
concurrency: int = -1,
concurrency: Optional[int] = None,
# TODO why no min_successes?
min_success_ratio: float = 1.0,
**kwargs,
Expand Down

0 comments on commit 8a8f4fd

Please sign in to comment.