We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3fb656 commit d85ca77Copy full SHA for d85ca77
common/source/ServerFactory.cpp
@@ -1,7 +1,7 @@
1
2
// Local private includes
3
#include "servers/Proxy.hpp"
4
-
+#include "servers/ProxyBasicZMQ.hpp"
5
// Local public includes
6
#include "common/IServer.hpp"
7
#include "common/SocketOptions.hpp"
@@ -39,7 +39,7 @@ std::unique_ptr<IServer> ServerFactory::create(
39
"been provided that will never be used!");
40
}
41
return std::unique_ptr<IServer>(
42
- new Proxy(socket_options, socket_credentials, m_log_context));
+ new ProxyBasicZMQ(socket_options, socket_credentials, m_log_context));
43
44
45
EXCEPT_PARAM(1, "Error Server type unsupported");
0 commit comments