concurrency-fix #15

Merged
jonas merged 24 commits from concurrency-fix into main 2025-12-01 13:34:35 +00:00
Showing only changes of commit 9cb4f9b1b9 - Show all commits

View File

@@ -270,7 +270,7 @@ async def reprocess_stuck_webhooks(
) )
) )
) )
stuck_webhooks = result.scalars().all() stuck_webhooks: list[WebhookRequest] = result.scalars().all()
if not stuck_webhooks: if not stuck_webhooks:
_LOGGER.info("No stuck webhooks found") _LOGGER.info("No stuck webhooks found")