http.php curl timeout changed to 20s

This commit is contained in:
patrick.xu 2022-08-23 14:50:31 +08:00
parent a5ef7e0ccc
commit 418725fb99

View File

@ -36,7 +36,7 @@ class HTTP_Request
global $UFILE_ACTION_TYPE; global $UFILE_ACTION_TYPE;
if ($CURL_TIMEOUT == null && $action_type !== ActionType::PUTFILE if ($CURL_TIMEOUT == null && $action_type !== ActionType::PUTFILE
&& $action_type !== ActionType::POSTFILE) { && $action_type !== ActionType::POSTFILE) {
$CURL_TIMEOUT = 10; $CURL_TIMEOUT = 20;
} }
$this->Timeout = $CURL_TIMEOUT; $this->Timeout = $CURL_TIMEOUT;
} }
@ -70,7 +70,7 @@ class HTTP_Response
global $CURL_TIMEOUT; global $CURL_TIMEOUT;
if ($CURL_TIMEOUT == null) { if ($CURL_TIMEOUT == null) {
$CURL_TIMEOUT = 10; $CURL_TIMEOUT = 20;
} }
$this->Timeout = $CURL_TIMEOUT; $this->Timeout = $CURL_TIMEOUT;
} }