Merge pull request 'fix' (#72) from metric into dev

Reviewed-on: https://gitea.chocomarsh.com/self/botalka/pulls/72
This commit is contained in:
emmatveev 2025-06-15 14:53:37 +03:00
commit a105ca4422

View File

@ -54,7 +54,7 @@ class TasksHandlerMixin:
continue
start = datetime.datetime.now(zoneinfo.ZoneInfo("Europe/Moscow"))
try:
print(f'process task with id {task["id"]}')
print(f'process task with id {task["id"]}, attempt {task["attempt"]}')
self.process(task['payload'])
success = True
except Exception as exc: