Skip to content

Commit

Permalink
Fix interval
Browse files Browse the repository at this point in the history
  • Loading branch information
ipdae committed Sep 11, 2024
1 parent 20f56fe commit ecbb77c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArenaService/ArenaService/ArenaWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
await Task.Delay(_interval, stoppingToken);
await Task.Delay(_interval * 1000, stoppingToken);
await PrepareArenaParticipants();
}
}
Expand Down

0 comments on commit ecbb77c

Please sign in to comment.