Skip to content

Commit

Permalink
fix scheduler example
Browse files Browse the repository at this point in the history
  • Loading branch information
DnlLrssn committed Oct 29, 2024
1 parent e303aa3 commit a4307c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion schedulers/myscheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (sched MyScheduler) Execute(
return nil
}
user := users.GetNext(counters)
err := sched.Scheduler.StartNewUser(ctx, timeout, log, scenario, thread, outputsDir, user, 1, false, counters)
err := sched.Scheduler.StartNewUser(ctx, timeout, log, scenario, thread, outputsDir, user, 1, false, counters, nil)
if err != nil {
mErr = multierror.Append(mErr, err)
}
Expand Down

0 comments on commit a4307c6

Please sign in to comment.