Crankier: off by one error (#12274)

Crankier: off by one error
This commit is contained in:
Andrew Stanton-Nurse 2019-07-17 07:50:40 -07:00 committed by GitHub
commit f56cb72b7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ namespace Microsoft.AspNetCore.SignalR.Crankier
await StartWorker(worker.Id, targetAddress, transportType, connectionsPerWorker);
}
await Runner.LogAgentAsync("Agent started listening to worker {0} ({1} of {2}).", worker.Id, index, numberOfWorkers);
await Runner.LogAgentAsync("Agent started listening to worker {0} ({1} of {2}).", worker.Id, index + 1, numberOfWorkers);
}
var workerTasks = new Task<AgentWorker>[numberOfWorkers];