In MetrcApi.php function executeAction() I'm getting 504's when the POST is large (like a harvest) and the curl_exec($ch) is not returning in time
I've tried the following but it does not help:
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
curl_setopt($ch, CURLOPT_TIMEOUT, 300);
set_time_limit(300);
ignore_user_abort(true);
In MetrcApi.php function executeAction() I'm getting 504's when the POST is large (like a harvest) and the curl_exec($ch) is not returning in time
I've tried the following but it does not help:
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
curl_setopt($ch, CURLOPT_TIMEOUT, 300);
set_time_limit(300);
ignore_user_abort(true);