diff options
| author | Ilnur Khuziev <[email protected]> | 2022-02-10 16:46:14 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:14 +0300 | 
| commit | 60040c91ffe701a84689b2c6310ff845e65cff42 (patch) | |
| tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/http/server/http.cpp | |
| parent | 736dcd8ca259457a136f2f9f9168c44643914323 (diff) | |
Restoring authorship annotation for Ilnur Khuziev <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http/server/http.cpp')
| -rw-r--r-- | library/cpp/http/server/http.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp index 2132d0148fc..128583bdd70 100644 --- a/library/cpp/http/server/http.cpp +++ b/library/cpp/http/server/http.cpp @@ -1,7 +1,7 @@  #include "http.h"  #include "http_ex.h" -#include <library/cpp/threading/equeue/equeue.h>  +#include <library/cpp/threading/equeue/equeue.h>  #include <util/generic/buffer.h>  #include <util/generic/cast.h> @@ -260,12 +260,12 @@ public:          };          if (!fail && Requests->Add(req.Get())) { -            Y_UNUSED(req.Release());  +            Y_UNUSED(req.Release());          } else {              req = new TFailRequest(req);              if (FailRequests->Add(req.Get())) { -                Y_UNUSED(req.Release());  +                Y_UNUSED(req.Release());              } else {                  Cb_->OnFailRequest(-1);              } @@ -664,7 +664,7 @@ void TClientRequest::ReleaseConnection() {      if (Conn_ && HttpConn_ && HttpServ()->Options().KeepAliveEnabled && HttpConn_->CanBeKeepAlive() && (!HttpServ()->Options().RejectExcessConnections || !HttpServ()->MaxRequestsReached())) {          Output().Finish();          Conn_->DeActivate(); -        Y_UNUSED(Conn_.Release());  +        Y_UNUSED(Conn_.Release());      }  } @@ -720,7 +720,7 @@ void TClientRequest::Process(void* ThreadSpecificResource) {          throw;      } -    Y_UNUSED(this_.Release());  +    Y_UNUSED(this_.Release());  }  void TClientRequest::ProcessFailRequest(int failstate) {  | 
