trustgraph/trustgraph-base
Cyber MacGeddon 34d87727fc Subscriber resilience: recreate consumer after connection failure
Move consumer creation from Subscriber.start() into the run() loop,
matching the pattern used by Consumer. If the connection drops and the
consumer is closed in the finally block, the loop now recreates it on
the next iteration instead of spinning forever on a None consumer.

Previously, start() created the consumer once and run() assumed it
existed for the lifetime of the subscriber. A connection failure would
set self.consumer = None in the finally cleanup, and the outer retry
loop would re-enter with no consumer, causing an infinite
'NoneType has no attribute receive' error loop.
2026-04-07 12:48:46 +01:00
..
trustgraph Subscriber resilience: recreate consumer after connection failure 2026-04-07 12:48:46 +01:00
pyproject.toml RabbitMQ pub/sub backend with topic exchange architecture (#752) 2026-04-02 12:47:16 +01:00
README.md Maint/fix build env (#84) 2024-09-30 19:47:09 +01:00