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 9439ba4 commit 9d46f9bCopy full SHA for 9d46f9b
sentry_sdk/integrations/django/__init__.py
@@ -779,7 +779,7 @@ def _set_db_data(span, cursor_or_db):
779
span.set_data(SPANDATA.SERVER_PORT, str(cached_config["port"]))
780
if cached_config.get("unix_socket"):
781
span.set_data(SPANDATA.SERVER_SOCKET_ADDRESS, cached_config["unix_socket"])
782
- if cached_config.get("vendor"):
+ if cached_config.get("vendor") and span._data.get(SPANDATA.DB_SYSTEM) is None:
783
span.set_data(SPANDATA.DB_SYSTEM, cached_config["vendor"])
784
785
return # Success - exit early
0 commit comments