aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/server/http.cpp
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/server/http.cpp
parent1ef52da9919aaa7ec7e3c51da7fdaa637ab133b7 (diff)
downloadydb-2a5efb07f92ee222959e5f3f26eddd1d6c7fd7da.tar.gz
Restoring authorship annotation for <lunc@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/http/server/http.cpp')
-rw-r--r--library/cpp/http/server/http.cpp4
1 files changed, 2 insertions, 2 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))
{