Skip to content

Commit 23daa9e

Browse files
authored
fix(bug): logging bug (#68919)
We are having error on logging for reserved key words
1 parent 906a6c0 commit 23daa9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/integrations/slack/tasks/send_notifications_on_activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def activity_created_receiver(instance, created, **kwargs) -> None:
6363
"""
6464
If an activity is created for an issue, this will trigger, and we can kick off an async process
6565
"""
66-
log_params = {"activity_id": instance.id, "created": created}
66+
log_params = {"activity_id": instance.id, "activity_object_created": created}
6767
_default_logger.info("receiver for activity event", extra=log_params)
6868
if not created:
6969
_default_logger.info("instance is not created, skipping post processing", extra=log_params)

0 commit comments

Comments
 (0)