Skip to content

Commit 5af526f

Browse files
committed
Fix: add missing return after ZMQ send in write() - Fixes #238
1 parent 3975bbd commit 5af526f

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

concore.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,7 @@ def write(port_identifier, name, val, delta=0):
333333
logging.error(f"ZMQ write error on port {port_identifier} (name: {name}): {e}")
334334
except Exception as e:
335335
logging.error(f"Unexpected error during ZMQ write on port {port_identifier} (name: {name}): {e}")
336+
return
336337

337338
# Case 2: File-based port
338339
try:

0 commit comments

Comments
 (0)