From 8c15cb5b508e625f34ec6e05ca89c39fc9c95880 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 30 Jun 2023 23:28:53 -0400 Subject: [PATCH] don't attempt a socket tear down, the shutdown of the ioService should clean these up; --- src/network/rest/http/HTTPClient.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/network/rest/http/HTTPClient.h b/src/network/rest/http/HTTPClient.h index 46a98285..526127e9 100644 --- a/src/network/rest/http/HTTPClient.h +++ b/src/network/rest/http/HTTPClient.h @@ -129,11 +129,6 @@ namespace network } m_completed = true; - - if (m_connection != nullptr) { - m_connection->stop(); - } - m_ioContext.stop(); wait();