diff --git a/Projects/NetStandard/CPMeta/RestAPI.cs b/Projects/NetStandard/CPMeta/RestAPI.cs index 7375c7f..aec4a5d 100644 --- a/Projects/NetStandard/CPMeta/RestAPI.cs +++ b/Projects/NetStandard/CPMeta/RestAPI.cs @@ -17,8 +17,8 @@ namespace CPMeta { ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; - RequestClient.Timeout = TimeSpan.FromMilliseconds(3000); - ResponseClient.Timeout = TimeSpan.FromMilliseconds(3000); + RequestClient.Timeout = TimeSpan.FromMilliseconds(10000); + ResponseClient.Timeout = TimeSpan.FromMilliseconds(10000); } public static async Task PostAsync(string Url, REQUEST body) where REQUEST : class where RESPONSE : class