tomberek | curl_easy_setopt(req, CURLOPT_TCP_KEEPALIVE, 1L);
curl_easy_setopt(req, CURLOPT_TCP_KEEPIDLE, 30L);
curl_easy_setopt(req, CURLOPT_TCP_KEEPINTVL, 30L);
curl_easy_setopt(req, CURLOPT_MAXAGE_CONN, 90L);
how about this. We may have been hitting a 60s timeout on the server side.. when matching ours there is a small race condition. Looks like 30s is fairly commonly used to prevent that.
| 05:00:29 |