fix: resolve mypy typing issues in webhook queue dispatch

This commit is contained in:
Abhimanyu Saharan
2026-02-14 06:33:35 +00:00
parent 8aed721ce0
commit 130f2b36f0
4 changed files with 36 additions and 24 deletions

View File

@@ -56,6 +56,7 @@ class Settings(BaseSettings):
# Webhook queueing / dispatch
webhook_redis_url: str = "redis://localhost:6379/0"
webhook_queue_name: str = "webhook-dispatch"
webhook_dispatch_schedule_id: str = "webhook-dispatch-batch"
webhook_dispatch_throttle_seconds: float = 2.0
webhook_dispatch_max_retries: int = 3