Skip to content

Commit

Permalink
zmq_ctx_term is blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed Nov 4, 2019
1 parent 0902182 commit a1fc26b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion messaging/impl_zmq.cc
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ ZMQContext::ZMQContext() {
}

ZMQContext::~ZMQContext() {
zmq_ctx_term(context);
// TODO: Figure out how to close context when sockets are still open
// zmq_ctx_term(context);
}

void ZMQMessage::init(size_t sz) {
Expand Down

0 comments on commit a1fc26b

Please sign in to comment.