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:14 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:14 +0300
commit60040c91ffe701a84689b2c6310ff845e65cff42 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/http/server/http.cpp
parent736dcd8ca259457a136f2f9f9168c44643914323 (diff)
downloadydb-60040c91ffe701a84689b2c6310ff845e65cff42.tar.gz
Restoring authorship annotation for Ilnur Khuziev <ilnur.khuziev@yandex.ru>. Commit 2 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 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) {