Unverified Commit 62cb4879 authored by kladko's avatar kladko

Enable ZMQ

parent 9cbb50b2
...@@ -109,6 +109,7 @@ void ZMQServer::run() { ...@@ -109,6 +109,7 @@ void ZMQServer::run() {
try { try {
zmq::proxy(static_cast<void *>(*frontend), static_cast<void *>(*backend), nullptr); zmq::proxy(static_cast<void *>(*frontend), static_cast<void *>(*backend), nullptr);
spdlog::info("Exited zmq proxy");
} catch (exception &_e) { } catch (exception &_e) {
if (isExitRequested) { if (isExitRequested) {
spdlog::info("Exited ZMQServer main thread"); spdlog::info("Exited ZMQServer main thread");
......
...@@ -329,6 +329,8 @@ TEST_CASE_METHOD(TestFixture, "DKG AES gen test", "[dkg-aes-gen]") { ...@@ -329,6 +329,8 @@ TEST_CASE_METHOD(TestFixture, "DKG AES gen test", "[dkg-aes-gen]") {
REQUIRE(status == SGX_SUCCESS); REQUIRE(status == SGX_SUCCESS);
REQUIRE(errStatus == SGX_SUCCESS); REQUIRE(errStatus == SGX_SUCCESS);
sleep(3);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment