We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89c800b commit 96ea71fCopy full SHA for 96ea71f
sentry_sdk/client.py
@@ -403,7 +403,7 @@ def capture_event(
403
if is_transaction:
404
if "profile" in event_opt:
405
event_opt["profile"]["transaction_id"] = event_opt["event_id"]
406
- event_opt["profile"]["version_name"] = event_opt["release"]
+ event_opt["profile"]["version_name"] = event_opt.get("release", "")
407
envelope.add_profile(event_opt.pop("profile"))
408
envelope.add_transaction(event_opt)
409
else:
0 commit comments