Skip to content

Commit

Permalink
Enabled socket reuse in qhttp to complement client connection sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
iagaponenko committed Jan 22, 2024
1 parent e877d76 commit 5f47b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qhttp/Server.cc
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ void Server::_readRequest(std::shared_ptr<ip::tcp::socket> socket) {
// Temporary disable this option due to a bug in the implementation
// causing disconnect if running the service within the Docker environment.
// See: DM-27396
// *reuseSocket = true;
*reuseSocket = true;
}

if (request->header.count("Content-Length") > 0) {
Expand Down

0 comments on commit 5f47b87

Please sign in to comment.