summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2015-07-06 19:01:08 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-07-06 19:05:32 -0300
commit2612f7af2aa627ba4c4d680d15f54ede6402b4eb (patch)
treefc36418a6cdcff15db8c212d9cfe2925bed9f7e5 /changes
parent0e6bd92806d9e55bbd686c9df6d9d919c25780c3 (diff)
[bug] run zmq log subscriber in background
Prevent locks caused by the zmq log handler reaching the zmq's HWM (High water mark / buffer limit) and causing some components to block until the buffer is empty (running the zmq handler for instance). We run the zmq handler in the background all the time to prevent this. - Resolves: #7222
Diffstat (limited to 'changes')
-rw-r--r--changes/bug-7222_run-background-zmq-subscriber1
1 files changed, 1 insertions, 0 deletions
diff --git a/changes/bug-7222_run-background-zmq-subscriber b/changes/bug-7222_run-background-zmq-subscriber
new file mode 100644
index 00000000..d074d005
--- /dev/null
+++ b/changes/bug-7222_run-background-zmq-subscriber
@@ -0,0 +1 @@
+- Run the zmq log subscriber in the background to avoid hitting the zmq's buffer limits. Closes #7222.