Skip to content

Commit ee637fb

Browse files
committed
fix: Add fingerprint from scope to event
Apparently this was never implemented
1 parent 450a25e commit ee637fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

sentry_sdk/scope.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,9 @@ def _drop(event, cause, ty):
119119
if event.get("transaction") is None and self._transaction is not None:
120120
event["transaction"] = self._transaction
121121

122+
if event.get("fingerprint") is None and self._fingerprint is not None:
123+
event["fingerprint"] = self._fingerprint
124+
122125
if self._extras:
123126
event.setdefault("extra", {}).update(self._extras)
124127

0 commit comments

Comments
 (0)