diff options
Diffstat (limited to 'src/lib/util/client_https.hpp')
-rw-r--r-- | src/lib/util/client_https.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/client_https.hpp b/src/lib/util/client_https.hpp index fc1f12bb075..3300ea6865f 100644 --- a/src/lib/util/client_https.hpp +++ b/src/lib/util/client_https.hpp @@ -56,7 +56,7 @@ namespace webpp { socket = std::make_unique<HTTPS>(io_context, m_context); } - auto timer = get_timeout_timer(); + auto timer = get_timeout_timer(config.timeout_connect); asio::async_connect(socket->lowest_layer(), it, [this, timer] (const std::error_code &ec, asio::ip::tcp::resolver::iterator /*it*/) { if (timer) |