diff options
Diffstat (limited to 'library/cpp/http/server')
-rw-r--r-- | library/cpp/http/server/options.h | 10 | ||||
-rw-r--r-- | library/cpp/http/server/ya.make | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/http/server/options.h b/library/cpp/http/server/options.h index cfcf9ba330..38eda0e5e7 100644 --- a/library/cpp/http/server/options.h +++ b/library/cpp/http/server/options.h @@ -70,11 +70,11 @@ public: /// Default interface name to bind the server. Used when none of BindAddress are provided. inline THttpServerOptions& SetHost(const TString& host) noexcept { - Host = host; - - return *this; - } - + Host = host; + + return *this; + } + /// Default port to bind the server. Used when none of BindAddress are provided. inline THttpServerOptions& SetPort(ui16 port) noexcept { Port = port; diff --git a/library/cpp/http/server/ya.make b/library/cpp/http/server/ya.make index da2c664741..bae6f33306 100644 --- a/library/cpp/http/server/ya.make +++ b/library/cpp/http/server/ya.make @@ -23,5 +23,5 @@ PEERDIR( ) END() - -RECURSE_FOR_TESTS(ut) + +RECURSE_FOR_TESTS(ut) |