Skip to content

Commit

Permalink
fix(api): serialize the UUID before passing off to pusher (#2124)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronshapiro authored Oct 8, 2024
1 parent fe659e7 commit 60d01d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keep/api/routes/incidents.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def __update_client_on_incident_change(
pusher_client.trigger(
f"private-{tenant_id}",
"incident-change",
{"incident_id": incident_id},
{"incident_id": str(incident_id)},
)
logger.info(
"Client notified on incident change",
Expand Down

0 comments on commit 60d01d2

Please sign in to comment.