Acknowledge messaages from Pulsar, doh!

This commit is contained in:
Cyber MacGeddon 2024-11-26 13:17:16 +00:00
parent 340d7a224f
commit c83bbe173e

View file

@ -156,6 +156,9 @@ class Subscriber:
while True:
msg = await consumer.receive()
# Acknowledge successful reception of the message
await consumer.acknowledge(msg)
try:
id = msg.properties()["id"]
except: