Skip to content

Commit 423cf55

Browse files
vdimirFelixoid
authored andcommitted
Another build fix
1 parent 9fc8a6d commit 423cf55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

programs/library-bridge/LibraryBridgeHandlerFactory.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ std::unique_ptr<HTTPRequestHandler> LibraryBridgeHandlerFactory::createRequestHa
2828
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_GET)
2929
{
3030
if (uri.getPath() == "/extdict_ping")
31-
return std::make_unique<ExternalDictionaryLibraryBridgeExistsHandler>(keep_alive_timeout, getContext(), libraries_paths);
31+
return std::make_unique<ExternalDictionaryLibraryBridgeExistsHandler>(keep_alive_timeout, getContext());
3232
else if (uri.getPath() == "/catboost_ping")
33-
return std::make_unique<CatBoostLibraryBridgeExistsHandler>(keep_alive_timeout, getContext(), libraries_paths);
33+
return std::make_unique<CatBoostLibraryBridgeExistsHandler>(keep_alive_timeout, getContext());
3434
}
3535

3636
if (request.getMethod() == Poco::Net::HTTPRequest::HTTP_POST)

0 commit comments

Comments
 (0)