Skip to content

Commit

Permalink
Change ping frequency
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliusdotpro committed Nov 8, 2023
1 parent 477526b commit f703e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiscordBot.App/Services/RunnerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
// A warning is more accurate to something that may cause issues if not resolved.
Log.Warning($"RunnerService: Caught HttpRequestException from serverApi.GetPing: {httpException.Message}", "RunnerService");
}
await Task.Delay(TimeSpan.FromSeconds(1), stoppingToken);
await Task.Delay(TimeSpan.FromMinutes(1), stoppingToken);
}
Console.WriteLine("Running...");
}
Expand Down

0 comments on commit f703e1c

Please sign in to comment.