Skip to content

Commit

Permalink
Fix server log output when listing worker count
Browse files Browse the repository at this point in the history
  • Loading branch information
mulbc committed Apr 9, 2020
1 parent 93bdfd4 commit 18e35d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func scheduleTests(config common.Testconf) {
WorkerID: fmt.Sprintf("w%d", worker),
}
workerConnection := <-readyWorkers
log.WithField("Worker", (*workerConnection).RemoteAddr()).Infof("We found worker %d / %d for test %d", worker, test.Workers, testNumber)
log.WithField("Worker", (*workerConnection).RemoteAddr()).Infof("We found worker %d / %d for test %d", worker+1, test.Workers, testNumber)
go executeTestOnWorker(workerConnection, workerConfig, doneChannel, continueWorkers)
}
for worker := 0; worker < test.Workers; worker++ {
Expand Down

0 comments on commit 18e35d5

Please sign in to comment.