Skip to content

Commit fd4885b

Browse files
mbercxmikibonacci
authored andcommitted
🐛 RabbitmqBroker: catch ConnectionError for __str__ (aiidateam#6473)
The current implementation of the `RabbitmqBroker.__str__()` method always prints both the version and the URL of the RabbitMQ server. However, the `get_rabbitmq_version()` method fails with a `ConnectionError` in case the RabbitMQ broker is not able to connect to the server. This issue would bubble up into the `verdi status` command, since this prints the string representation of the `RabbitmqBroker` in the message that reports the connection failure. At this point the `ConnectionError` is no longer caught, and hence the user is exposed to the full traceback. Here we adapt the `RabbitmqBroker.__str__()` method to catch the `ConnectionError` and return the URL with the message that the connection failed.
1 parent 9c25c33 commit fd4885b

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

src/aiida/brokers/rabbitmq/broker.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ def __init__(self, profile: Profile) -> None:
3434
self._prefix = f'aiida-{self._profile.uuid}'
3535

3636
def __str__(self):
37-
return f'RabbitMQ v{self.get_rabbitmq_version()} @ {self.get_url()}'
37+
try:
38+
return f'RabbitMQ v{self.get_rabbitmq_version()} @ {self.get_url()}'
39+
except ConnectionError:
40+
return f'RabbitMQ @ {self.get_url()} <Connection failed>'
3841

3942
def close(self):
4043
"""Close the broker."""

tests/brokers/test_rabbitmq.py

+13
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,19 @@
2222
pytestmark = pytest.mark.requires_rmq
2323

2424

25+
def test_str_method(monkeypatch, manager):
26+
"""Test the `__str__` method of the `RabbitmqBroker`."""
27+
28+
def raise_connection_error():
29+
raise ConnectionError
30+
31+
broker = manager.get_broker()
32+
assert 'RabbitMQ v' in str(broker)
33+
34+
monkeypatch.setattr(broker, 'get_communicator', raise_connection_error)
35+
assert 'RabbitMQ @' in str(broker)
36+
37+
2538
@pytest.mark.parametrize(
2639
('version', 'supported'),
2740
(

0 commit comments

Comments
 (0)