You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2019. It is now read-only.
I notice our server occasionally throw GoCardlessApiException which give a "Unknown error" message, the HTTP response code from the sandbox server was 0.
After read through the Request.php, I noticed that the timeout of curl connection is set to 10
CURLOPT_CONNECTTIMEOUT => 10
I'm concerning there might be a connection timeout that may delayed by DNS server as curl doesn't really cache the DNS request, thus I would recommend you to increase this CONNECTTIMEOUT to 30 or greater, after I change it in our system, this issue seems somehow resolved.
Hi
I notice our server occasionally throw GoCardlessApiException which give a "Unknown error" message, the HTTP response code from the sandbox server was 0.
After read through the Request.php, I noticed that the timeout of curl connection is set to 10
CURLOPT_CONNECTTIMEOUT => 10
I'm concerning there might be a connection timeout that may delayed by DNS server as curl doesn't really cache the DNS request, thus I would recommend you to increase this CONNECTTIMEOUT to 30 or greater, after I change it in our system, this issue seems somehow resolved.