You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug in the server factory, proxybasic is not returned anywhere. Proxy object is being created instead.
} else if (server_type == ServerType::PROXY_BASIC_ZMQ) {
if (incoming_operators.size() > 0) {
EXCEPT_PARAM(1, "Error building PROXY_BASIC_ZMQ server, operators have "
"been provided that will never be used!");
}
return std::unique_ptr<IServer>(
new Proxy(socket_options, socket_credentials, m_log_context));
}
Acceptance
Change Proxy to ProxyBasic. in ServerFactory.
The text was updated successfully, but these errors were encountered:
Description
There is a bug in the server factory, proxybasic is not returned anywhere. Proxy object is being created instead.
Acceptance
Change Proxy to ProxyBasic. in ServerFactory.
The text was updated successfully, but these errors were encountered: