mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 15:53:30 -07:00
parent
4046fd0ad9
commit
ac2b450892
|
|
@ -1,7 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net;
|
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
@ -23,7 +22,7 @@ namespace DiscordChatExporter.Core.Services
|
||||||
{
|
{
|
||||||
// Create retry policy
|
// Create retry policy
|
||||||
var retry = Retry.Create()
|
var retry = Retry.Create()
|
||||||
.Catch<HttpErrorStatusCodeException>(false, e => e.StatusCode == HttpStatusCode.ServiceUnavailable)
|
.Catch<HttpErrorStatusCodeException>(false, e => (int) e.StatusCode >= 500)
|
||||||
.Catch<HttpErrorStatusCodeException>(false, e => (int) e.StatusCode == 429)
|
.Catch<HttpErrorStatusCodeException>(false, e => (int) e.StatusCode == 429)
|
||||||
.WithMaxTryCount(10)
|
.WithMaxTryCount(10)
|
||||||
.WithDelay(TimeSpan.FromSeconds(0.4));
|
.WithDelay(TimeSpan.FromSeconds(0.4));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue