aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http
diff options
context:
space:
mode:
authorlunc <lunc@yandex-team.ru>2022-02-10 16:49:39 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:39 +0300
commit2a5efb07f92ee222959e5f3f26eddd1d6c7fd7da (patch)
treedcbe7da9d893c470a4fb41c159d7c232a1fb2613 /library/cpp/http
parent1ef52da9919aaa7ec7e3c51da7fdaa637ab133b7 (diff)
downloadydb-2a5efb07f92ee222959e5f3f26eddd1d6c7fd7da.tar.gz
Restoring authorship annotation for <lunc@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http')
-rw-r--r--library/cpp/http/server/http.cpp4
-rw-r--r--library/cpp/http/server/http.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/http/server/http.cpp b/library/cpp/http/server/http.cpp
index 128583bdd7..2d77dc1de1 100644
--- a/library/cpp/http/server/http.cpp
+++ b/library/cpp/http/server/http.cpp
@@ -396,7 +396,7 @@ public:
Options_.MaxQueueSize = maxQS;
Requests->Start(Options_.nThreads, Options_.MaxQueueSize);
}
-
+
TImpl(THttpServer* parent, ICallBack* cb, TMtpQueueRef mainWorkers, TMtpQueueRef failWorkers, const TOptions& options_)
: Requests(mainWorkers)
, FailRequests(failWorkers)
@@ -481,7 +481,7 @@ private:
return pool;
}
};
-
+
THttpServer::THttpServer(ICallBack* cb, const TOptions& options, IThreadFactory* pool)
: Impl_(new TImpl(this, cb, options, pool))
{
diff --git a/library/cpp/http/server/http.h b/library/cpp/http/server/http.h
index b292d38f27..552149a136 100644
--- a/library/cpp/http/server/http.h
+++ b/library/cpp/http/server/http.h
@@ -13,7 +13,7 @@
class IThreadFactory;
class TClientRequest;
class TClientConnection;
-
+
class THttpServer {
friend class TClientRequest;
friend class TClientConnection;