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();