Skip to content

Commit d85ca77

Browse files
committed
Correct ServerFactory by instantiating correct class
1 parent e3fb656 commit d85ca77

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/source/ServerFactory.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// Local private includes
33
#include "servers/Proxy.hpp"
4-
4+
#include "servers/ProxyBasicZMQ.hpp"
55
// Local public includes
66
#include "common/IServer.hpp"
77
#include "common/SocketOptions.hpp"
@@ -39,7 +39,7 @@ std::unique_ptr<IServer> ServerFactory::create(
3939
"been provided that will never be used!");
4040
}
4141
return std::unique_ptr<IServer>(
42-
new Proxy(socket_options, socket_credentials, m_log_context));
42+
new ProxyBasicZMQ(socket_options, socket_credentials, m_log_context));
4343
}
4444

4545
EXCEPT_PARAM(1, "Error Server type unsupported");

0 commit comments

Comments
 (0)