v0.1.1
All checks were successful
Build and Deploy Docker Image / build-and-push (push) Successful in 3m56s

-- added automativ queue reconenction (querying for queues to join from
server)
This commit is contained in:
2026-05-26 11:44:13 +03:00
parent 96548e60ea
commit fdeec1bf2e
8 changed files with 212 additions and 33 deletions

View File

@@ -14,6 +14,7 @@ async def start_heartbeat():
while True:
try:
await publish_heartbeat()
except Exception as e:
print(f"Heartbeat failed: {e}")
await asyncio.sleep(5)
@@ -24,6 +25,7 @@ async def start_consumer():
while True:
try:
await consume_messages_topic()
await asyncio.Future()
except Exception as e:
print(f"Consumer failed: {e}")
await asyncio.sleep(5)