Fix incorrect function name

refs #9876
This commit is contained in:
Gunnar Beutner 2015-08-11 12:56:30 +02:00
parent f600d75930
commit ec8cdcd554
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ void ApiListener::AddConnection(const Endpoint::Ptr& endpoint)
void ApiListener::NewClientHandler(const Socket::Ptr& client, const String& hostname, ConnectionRole role)
{
try {
NewClientHandler(client, hostname, role);
NewClientHandlerInternal(client, hostname, role);
} catch (const std::exception& ex) {
Log(LogCritical, "ApiListener")
<< "Exception while handling new API client connection: " << DiagnosticInformation(ex);