Skip to content

Commit

Permalink
Add todo for handling the error in rampingVUs
Browse files Browse the repository at this point in the history
  • Loading branch information
inancgumus committed Sep 30, 2021
1 parent 0948ab6 commit 3a11293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/executor/ramping_vus.go
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ func (rs rampingVUsRunState) scheduledVUsHandlerStrategy() func(lib.ExecutionSte
return func(raw lib.ExecutionStep) {
pv := raw.PlannedVUs
for ; cur < pv; cur++ {
rs.vuHandles[cur].start()
_ = rs.vuHandles[cur].start() // TODO: handle the error
}
for ; pv < cur; cur-- {
rs.vuHandles[cur-1].gracefulStop()
Expand Down

0 comments on commit 3a11293

Please sign in to comment.