Commit 75005e64 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

http keepalive hotfix

parent 2ebd5e7b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -267,7 +267,7 @@ void HTTPServerConnection::finishResponse() {
    return;
  }

  if (cur_request_->keepalive()) {
  if (false && cur_request_->keepalive()) {
    std::lock_guard<std::mutex> lk(mutex_);
    nextRequest();
  } else {