Skip to content

Commit

Permalink
fix: redis (#1630)
Browse files Browse the repository at this point in the history
  • Loading branch information
shahargl authored Aug 16, 2024
1 parent c16eb70 commit fd47fa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keep/api/routes/alerts.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ async def receive_generic_event(
if REDIS:
redis: ArqRedis = await get_pool()
await redis.enqueue_job(
"process_event",
"async_process_event",
authenticated_entity.tenant_id,
None,
None,
Expand Down Expand Up @@ -362,7 +362,7 @@ async def receive_event(
if REDIS:
redis: ArqRedis = await get_pool()
await redis.enqueue_job(
"process_event",
"async_process_event",
authenticated_entity.tenant_id,
provider_type,
provider_id,
Expand Down

0 comments on commit fd47fa9

Please sign in to comment.