We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b1de90 commit 6256765Copy full SHA for 6256765
tests/integrations/launchdarkly/test_launchdarkly.py
@@ -85,7 +85,9 @@ def task(flag_key):
85
client.variation(flag_key, context, False)
86
# use a tag to identify to identify events later on
87
sentry_sdk.set_tag("task_id", flag_key)
88
- sentry_sdk.capture_exception(Exception("something wrong!"))
+ sentry_sdk.capture_exception(
89
+ Exception(f"something wrong with task {flag_key}!")
90
+ )
91
92
# Capture an eval before we split isolation scopes.
93
client.variation("hello", context, False)
0 commit comments