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 c267ef4 commit 7fad40eCopy full SHA for 7fad40e
sentry_sdk/integrations/django/caching.py
@@ -31,7 +31,7 @@ def _instrument_call(cache, method_name, original_method, args, kwargs):
31
if integration is None or not integration.cache_spans:
32
return original_method(*args, **kwargs)
33
34
- description = "{} {}".format(method_name, " ".join(args))
+ description = "{} {}".format(method_name, args[0])
35
36
with hub.start_span(op=OP.CACHE, description=description) as span:
37
value = original_method(*args, **kwargs)
0 commit comments