diff options
| author | Ilnur Khuziev <[email protected]> | 2022-02-10 16:46:13 +0300 | 
|---|---|---|
| committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:46:13 +0300 | 
| commit | 736dcd8ca259457a136f2f9f9168c44643914323 (patch) | |
| tree | ddd46a036d68bfa83aa11b892f31243ea6b068a1 /library/cpp/http/server/http.cpp | |
| parent | 9bf2fa2b060c9881d3135c2208c624a1dd546ecc (diff) | |
Restoring authorship annotation for Ilnur Khuziev <[email protected]>. Commit 1 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 128583bdd70..2132d0148fc 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) {  | 
