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 e3b64ee commit 7ca12a4Copy full SHA for 7ca12a4
src/databricks/sql/telemetry/telemetry_client.py
@@ -369,6 +369,7 @@ def initialize_telemetry_client(
369
370
with TelemetryClientFactory._lock:
371
TelemetryClientFactory._initialize()
372
+
373
if session_id_hex not in TelemetryClientFactory._clients:
374
logger.debug(
375
"Creating new TelemetryClient for connection %s",
@@ -388,7 +389,6 @@ def initialize_telemetry_client(
388
389
TelemetryClientFactory._clients[
390
session_id_hex
391
] = NoopTelemetryClient()
-
392
except Exception as e:
393
logger.debug("Failed to initialize telemetry client: %s", e)
394
# Fallback to NoopTelemetryClient to ensure connection doesn't fail
0 commit comments