Skip to content

Commit b3f40e5

Browse files
authored
fix(aci): Fix accidental over-logging (#93971)
Unfortunately, 'event_data' went from being the variable for current event context to being the complete parsed data from Redis, and we continued logging it per group. That's more data than we should be logging even arguably once, let alone per group.
1 parent 2e992ba commit b3f40e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/workflow_engine/processors/delayed_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ def fire_actions_for_groups(
580580
extra={
581581
"workflow_ids": [workflow.id for workflow in workflows],
582582
"actions": [action.id for action in filtered_actions],
583-
"event_data": event_data,
583+
"event_data": workflow_event_data,
584584
"event_id": workflow_event_data.event.event_id,
585585
},
586586
)

0 commit comments

Comments
 (0)