From 418725fb99ac1f25cf627235d057fc7cf873e2d0 Mon Sep 17 00:00:00 2001 From: "patrick.xu" Date: Tue, 23 Aug 2022 14:50:31 +0800 Subject: [PATCH] http.php curl timeout changed to 20s --- v1/ucloud/http.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v1/ucloud/http.php b/v1/ucloud/http.php index 878d45e..ed48ad1 100644 --- a/v1/ucloud/http.php +++ b/v1/ucloud/http.php @@ -36,7 +36,7 @@ class HTTP_Request global $UFILE_ACTION_TYPE; if ($CURL_TIMEOUT == null && $action_type !== ActionType::PUTFILE && $action_type !== ActionType::POSTFILE) { - $CURL_TIMEOUT = 10; + $CURL_TIMEOUT = 20; } $this->Timeout = $CURL_TIMEOUT; } @@ -70,7 +70,7 @@ class HTTP_Response global $CURL_TIMEOUT; if ($CURL_TIMEOUT == null) { - $CURL_TIMEOUT = 10; + $CURL_TIMEOUT = 20; } $this->Timeout = $CURL_TIMEOUT; }