Skip to content

Commit

Permalink
fix: use single queue limit
Browse files Browse the repository at this point in the history
  • Loading branch information
abelanger5 committed Aug 21, 2024
1 parent 2cca30b commit 65f184e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/repository/prisma/step_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -865,7 +865,7 @@ func (s *stepRunEngineRepository) QueueStepRuns(ctx context.Context, tenantId st

limit := 100

if limit > s.cf.SingleQueueLimit {
if s.cf.SingleQueueLimit != 0 {
limit = s.cf.SingleQueueLimit
}

Expand Down

0 comments on commit 65f184e

Please sign in to comment.