Open spgyip opened 8 years ago
我们的php-fpm最近偶发性被挂死,定位到是Pili Sdk里面的curl socket阻塞。
Pili/Transport.php : public function send($method, $url, $body = NULL) { $headers = $this->_setHeaders($method, $url, $body); $response = HttpRequest::send($method, $url, $body, $headers); return $response->body; }
增加超时设置
HttpRequest::timeout(3);
好的,我们处理下
问题描述
我们的php-fpm最近偶发性被挂死,定位到是Pili Sdk里面的curl socket阻塞。
相关代码
建议
增加超时设置