From af51353ce55ae7c8c5d5dda32f3928848695d56e Mon Sep 17 00:00:00 2001 From: SHM Date: Mon, 10 Nov 2025 09:14:26 +0900 Subject: [PATCH] =?UTF-8?q?[=EC=84=B1=ED=98=84=EB=AA=A8]=20=ED=83=80?= =?UTF-8?q?=EC=9E=84=EC=95=84=EC=9B=83=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Projects/NetStandard/CPMeta/RestAPI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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