From 0d365f3a7b10eaee551059c03b0288d27ed03a1a Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Fri, 11 Feb 2022 22:29:27 -0400 Subject: [PATCH] Increasing curl timeout --- libdaggy/src/Utilities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdaggy/src/Utilities.cpp b/libdaggy/src/Utilities.cpp index d1c4263..9d18add 100644 --- a/libdaggy/src/Utilities.cpp +++ b/libdaggy/src/Utilities.cpp @@ -234,7 +234,7 @@ namespace daggy { curl_easy_setopt(curl, CURLOPT_URL, url.c_str()); curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curlWriter); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer); - curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3); + curl_easy_setopt(curl, CURLOPT_TIMEOUT, 8); if (trace) { curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, http_trace);