diff options
author | kletskov <kletskov@yandex-team.ru> | 2022-02-10 16:49:40 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:40 +0300 |
commit | ac559bd4bb6b11b17dce999cf58c05e08f6087a2 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/http | |
parent | 9a688d644be039e66a24f55c77350c98e3381436 (diff) | |
download | ydb-ac559bd4bb6b11b17dce999cf58c05e08f6087a2.tar.gz |
Restoring authorship annotation for <kletskov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/http')
-rw-r--r-- | library/cpp/http/server/http.cpp | 28 | ||||
-rw-r--r-- | library/cpp/http/server/http.h | 4 |
2 files changed, 16 insertions, 16 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp index 1ccf65f548..128583bdd7 100644 --- a/library/cpp/http/server/http.cpp +++ b/library/cpp/http/server/http.cpp @@ -272,13 +272,13 @@ public: } } - size_t GetRequestQueueSize() const { - return Requests->Size(); - } + size_t GetRequestQueueSize() const { + return Requests->Size(); + } - size_t GetFailQueueSize() const { - return FailRequests->Size(); - } + size_t GetFailQueueSize() const { + return FailRequests->Size(); + } const IThreadPool& GetRequestQueue() const { return *Requests; @@ -531,14 +531,14 @@ const THttpServer::TOptions& THttpServer::Options() const noexcept { return Impl_->Options(); } -size_t THttpServer::GetRequestQueueSize() const { - return Impl_->GetRequestQueueSize(); -} - -size_t THttpServer::GetFailQueueSize() const { - return Impl_->GetFailQueueSize(); -} - +size_t THttpServer::GetRequestQueueSize() const { + return Impl_->GetRequestQueueSize(); +} + +size_t THttpServer::GetFailQueueSize() const { + return Impl_->GetFailQueueSize(); +} + const IThreadPool& THttpServer::GetRequestQueue() const { return Impl_->GetRequestQueue(); } diff --git a/library/cpp/http/server/http.h b/library/cpp/http/server/http.h index c66c7e7f4b..b292d38f27 100644 --- a/library/cpp/http/server/http.h +++ b/library/cpp/http/server/http.h @@ -84,8 +84,8 @@ public: i64 GetClientCount() const; class TImpl; - size_t GetRequestQueueSize() const; - size_t GetFailQueueSize() const; + size_t GetRequestQueueSize() const; + size_t GetFailQueueSize() const; const IThreadPool& GetRequestQueue() const; const IThreadPool& GetFailQueue() const; |