Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion worker_multiprocessing/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def workflow_worker(client: Client) -> Worker:
workflows=[ParallelizedWorkflow],
# Workflow tasks are CPU bound, but generally execute quickly.
# Because we're leveraging multiprocessing to achieve parallelism,
# we want each workflow worker to be confirgured for small workflow
# we want each workflow worker to be configured for small workflow
# task processing.
max_concurrent_workflow_tasks=2,
workflow_task_poller_behavior=PollerBehaviorSimpleMaximum(2),
Expand Down
Loading