mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
feat: lower timeout in twilight gateway ratelimiter
This commit is contained in:
parent
50f9465826
commit
40acd9370c
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ namespace Myriad.Gateway.Limit;
|
|||
|
||||
public class TwilightGatewayRatelimiter: IGatewayRatelimiter
|
||||
{
|
||||
private readonly HttpClient _httpClient = new() { Timeout = TimeSpan.FromSeconds(60) };
|
||||
private readonly HttpClient _httpClient = new() { Timeout = TimeSpan.FromSeconds(30) };
|
||||
|
||||
private readonly ILogger _logger;
|
||||
private readonly string _url;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue