Skip to content

Commit

Permalink
Remove over-verbose debug message (#3745)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
benclifford authored Jan 14, 2025
1 parent 784256d commit 9750976
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion parsl/executors/high_throughput/zmq_pipes.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,6 @@ def get(self, timeout_ms=None):
"""Get a message from the queue, returning None if timeout expires
without a message. timeout is measured in milliseconds.
"""
logger.debug("Waiting for ResultsIncoming message")
socks = dict(self.poller.poll(timeout=timeout_ms))
if self.results_receiver in socks and socks[self.results_receiver] == zmq.POLLIN:
m = self.results_receiver.recv_multipart()
Expand Down

0 comments on commit 9750976

Please sign in to comment.