Revert "feat: query identify ratelimiter when identifying instead of when connecting websocket"

This reverts commit 5627fa9864.
This commit is contained in:
spiral 2022-01-08 09:08:09 -05:00
parent e4bd8b4c9f
commit 22feedd5dc
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31

View File

@ -129,6 +129,8 @@ public class Shard
{ {
while (true) while (true)
{ {
await _ratelimiter.Identify(_info.ShardId);
_logger.Information("Shard {ShardId}: Connecting to WebSocket", _info.ShardId); _logger.Information("Shard {ShardId}: Connecting to WebSocket", _info.ShardId);
try try
{ {
@ -147,14 +149,7 @@ public class Shard
=> _conn.Disconnect(closeStatus, null); => _conn.Disconnect(closeStatus, null);
private async Task SendIdentify() private async Task SendIdentify()
{ => await _conn.Send(new GatewayPacket
_logger.Debug("Shard {ShardId}: Requesting identify from ratelimiter", _info.ShardId);
await _ratelimiter.Identify(_info.ShardId);
_logger.Debug("Shard {ShardId}: Ratelimiter said OK to identify now", _info.ShardId);
await _conn.Send(new GatewayPacket
{ {
Opcode = GatewayOpcode.Identify, Opcode = GatewayOpcode.Identify,
Payload = new GatewayIdentify Payload = new GatewayIdentify
@ -172,7 +167,6 @@ public class Shard
LargeThreshold = 50 LargeThreshold = 50
} }
}); });
}
private async Task SendResume((string SessionId, int? LastSeq) arg) private async Task SendResume((string SessionId, int? LastSeq) arg)
=> await _conn.Send(new GatewayPacket => await _conn.Send(new GatewayPacket