aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/service/monservice.cpp
diff options
context:
space:
mode:
authoruzhas <uzhas@yandex-team.ru>2022-02-10 16:47:06 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:06 +0300
commit2002caab389ddffd0e7db4d8c4db835fa4c99f83 (patch)
tree9d3448d5ba97edddf88aa69bcb138e88286e8176 /library/cpp/monlib/service/monservice.cpp
parent17d51d51855dc3ed663d0e31fa75d3ff5ab80702 (diff)
downloadydb-2002caab389ddffd0e7db4d8c4db835fa4c99f83.tar.gz
Restoring authorship annotation for <uzhas@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/monlib/service/monservice.cpp')
-rw-r--r--library/cpp/monlib/service/monservice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/monlib/service/monservice.cpp b/library/cpp/monlib/service/monservice.cpp
index d1b9cda1d2..67b133365e 100644
--- a/library/cpp/monlib/service/monservice.cpp
+++ b/library/cpp/monlib/service/monservice.cpp
@@ -16,9 +16,9 @@ TMonService2::TMonService2(ui16 port, const TString& host, ui32 threads, const T
: TMonService2(HttpServerOptions(port, host, threads), title, std::move(auth))
{
}
-
+
TMonService2::TMonService2(const THttpServerOptions& options, const TString& title, THolder<IAuthProvider> auth)
- : NMonitoring::TMtHttpServer(options, std::bind(&TMonService2::ServeRequest, this, std::placeholders::_1, std::placeholders::_2))
+ : NMonitoring::TMtHttpServer(options, std::bind(&TMonService2::ServeRequest, this, std::placeholders::_1, std::placeholders::_2))
, Title(title)
, IndexMonPage(new TIndexMonPage("", Title))
, AuthProvider_{std::move(auth)}