Crankier: off by one error

This commit is contained in:
Stafford Williams 2019-07-17 22:01:39 +10:00 committed by GitHub
parent f4f5b16e93
commit 49dab32afa
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];