diff --git a/CMakeLists.txt b/CMakeLists.txt index f290d97f6f..7265d1ed8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.20) # Set current version of the project set(TARAXA_MAJOR_VERSION 1) set(TARAXA_MINOR_VERSION 4) -set(TARAXA_PATCH_VERSION 6) +set(TARAXA_PATCH_VERSION 7) set(TARAXA_VERSION ${TARAXA_MAJOR_VERSION}.${TARAXA_MINOR_VERSION}.${TARAXA_PATCH_VERSION}) # Any time a change in the network protocol is introduced this version should be increased diff --git a/libraries/core_libs/network/src/http_server.cpp b/libraries/core_libs/network/src/http_server.cpp index eb76d15f02..7b681ac3fb 100644 --- a/libraries/core_libs/network/src/http_server.cpp +++ b/libraries/core_libs/network/src/http_server.cpp @@ -82,8 +82,6 @@ void HttpConnection::stop() { if (socket_.is_open()) { try { LOG(server_->log_dg_) << "Closing connection..."; - boost::asio::socket_base::linger option(true, 0); - socket_.set_option(option); socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both); socket_.close(); } catch (...) {