1
Fork 0
mirror of https://gitlab.com/Kwoth/nadekobot.git synced 2024-10-02 12:09:07 +00:00

change: increased delay to 3k on leaveunkeptservers

This commit is contained in:
Kwoth 2024-08-30 02:06:56 +00:00
parent 2b12269917
commit 2d16ecf6de

View file

@ -65,7 +65,7 @@ public partial class Administration
for (var shardId = startShardId; shardId < _creds.GetCreds().TotalShards; shardId++)
{
await _svc.StartLeavingUnkeptServers(shardId);
await Task.Delay(2500 * 1000);
await Task.Delay(3000 * 1000);
}
await ctx.OkAsync();