优化:延长超时时间,解决做种太多客户端响应超时的问题

This commit is contained in:
iyuu.cn
2020-01-03 19:46:16 +08:00
parent 20f5367737
commit efd39c6da3
2 changed files with 4 additions and 1 deletions

View File

@@ -571,7 +571,8 @@ class TransmissionRPC
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60);
curl_setopt($ch, CURLOPT_TIMEOUT, 600);
$content = curl_exec($ch);
curl_close($ch);