aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/server/http.cpp
diff options
context:
space:
mode:
authorIlnur Khuziev <ilnur.khuziev@yandex.ru>2022-02-10 16:46:13 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:13 +0300
commit736dcd8ca259457a136f2f9f9168c44643914323 (patch)
treeddd46a036d68bfa83aa11b892f31243ea6b068a1 /library/cpp/http/server/http.cpp
parent9bf2fa2b060c9881d3135c2208c624a1dd546ecc (diff)
downloadydb-736dcd8ca259457a136f2f9f9168c44643914323.tar.gz
Restoring authorship annotation for Ilnur Khuziev <ilnur.khuziev@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/server/http.cpp')
-rw-r--r--library/cpp/http/server/http.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp
index 128583bdd7..2132d0148f 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) {