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 6e129b6 commit 6979215Copy full SHA for 6979215
sentry_sdk/tracing_utils.py
@@ -157,14 +157,7 @@ def record_sql_queries(
157
158
def maybe_create_breadcrumbs_from_span(scope, span):
159
# type: (sentry_sdk.Scope, sentry_sdk.tracing.Span) -> None
160
- if span.op == OP.DB_REDIS:
161
- scope.add_breadcrumb(
162
- message=span.description,
163
- type="redis",
164
- category="redis",
165
- data=span._tags,
166
- )
167
- elif span.op == OP.HTTP_CLIENT:
+ if span.op == OP.HTTP_CLIENT:
168
scope.add_breadcrumb(
169
type="http",
170
category="httplib",
0 commit comments