Skip to content

Commit 9750976

Browse files
authored
Remove over-verbose debug message (#3745)
This was introduced in PR #2965 to help debug ZMQ hangs. PR #3709 changed this loop to run every poll period (by default, every 10ms) rather than every result message. That turns this log line into a huge source of log noise/volume. This PR removes that log line - ZMQ debugging must proceed without it. # Changed Behaviour parsl.log size from: pytest parsl/tests/ --config parsl/tests/configs/htex_local.py before this PR: 7 megabytes after this PR: 2 megabytes ## Type of change - Bug fix
1 parent 784256d commit 9750976

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

parsl/executors/high_throughput/zmq_pipes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ def get(self, timeout_ms=None):
213213
"""Get a message from the queue, returning None if timeout expires
214214
without a message. timeout is measured in milliseconds.
215215
"""
216-
logger.debug("Waiting for ResultsIncoming message")
217216
socks = dict(self.poller.poll(timeout=timeout_ms))
218217
if self.results_receiver in socks and socks[self.results_receiver] == zmq.POLLIN:
219218
m = self.results_receiver.recv_multipart()

0 commit comments

Comments
 (0)