We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff07c8 commit 395049aCopy full SHA for 395049a
1 file changed
src/databricks/sql/telemetry/telemetry_client.py
@@ -539,12 +539,24 @@ def initialize_telemetry_client(
539
session_id_hex,
540
flush=True,
541
)
542
+ else:
543
+ print(
544
+ "\n Session ID already in clients: %s",
545
+ session_id_hex,
546
+ flush=True,
547
+ )
548
print(
549
"\nRELEASED: Telemetry client initialized: %s",
550
551
552
553
except Exception as e:
554
555
+ "\nERROR: Failed to initialize telemetry client: %s due to %s",
556
557
+ e,
558
559
560
logger.debug("Failed to initialize telemetry client: %s", e)
561
# Fallback to NoopTelemetryClient to ensure connection doesn't fail
562
TelemetryClientFactory._clients[session_id_hex] = NoopTelemetryClient()
0 commit comments