From df108dfd2857884c0bc5f226b59bd47f51455c70 Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Tue, 1 Feb 2022 11:02:33 -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 9c52980..757233c 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, 20); if (trace) { curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, http_trace);