jira-api-restclient
jira-api-restclient copied to clipboard
There should be an option to configure timeout with API
I had to manually set the timeout using below options.
chobie/jira-api-restclient/src/Jira/Api/Client/CurlClient.php
curl_setopt($curl, CURLOPT_TIMEOUT, 30);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10);
Sure, send a PR.
Here we go, https://github.com/chobie/jira-api-restclient/pull/160