fix #12

Merged
emmatveev merged 1 commits from queues into dev 2024-11-17 13:09:32 +03:00

View File

@ -34,8 +34,8 @@ class TasksHandlerMixin:
data = response.json() data = response.json()
try: try:
self.process(data['payload']) self.process(data['payload'])
except: except Exception as exc:
print(f'Error processing message id={data["id"]}, payload={data["payload"]}') print(f'Error processing message id={data["id"]}, payload={data["payload"]}, exc={exc}')
continue continue
if QUEUES_URL is None: if QUEUES_URL is None:
continue continue