diff --git a/trustgraph-flow/trustgraph/api/gateway/service.py b/trustgraph-flow/trustgraph/api/gateway/service.py index 6d5f70ce..a9ed7079 100755 --- a/trustgraph-flow/trustgraph/api/gateway/service.py +++ b/trustgraph-flow/trustgraph/api/gateway/service.py @@ -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: