queues #16

Merged
emmatveev merged 6 commits from queues into master 2024-11-17 14:13:27 +03:00
Showing only changes of commit a92977723e - Show all commits

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