Skip to content

Commit

Permalink
fix(engine): Use ALLOW_ALL schedule overlap policy (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
daryllimyt authored Dec 16, 2024
1 parent 5535f5a commit 20004f6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tracecat/workflow/schedules/bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ async def create_schedule(
start_at=start_at,
end_at=end_at,
),
policy=temporalio.client.SchedulePolicy(
# Allow overlapping workflows to run in parallel
overlap=temporalio.client.ScheduleOverlapPolicy.ALLOW_ALL,
),
),
)

Expand Down

0 comments on commit 20004f6

Please sign in to comment.