File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
src/databricks/sql/telemetry Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -446,7 +446,7 @@ class TelemetryClientFactory:
446446
447447 _clients : Dict [
448448 str , BaseTelemetryClient
449- ] = {} # Map of session_id_hex -> BaseTelemetryClient
449+ ] = {} # Map of session_id_hex -> BaseTelemetryClient
450450 _executor : Optional [ThreadPoolExecutor ] = None
451451 _initialized : bool = False
452452 _lock = threading .RLock () # Thread safety for factory operations
@@ -550,14 +550,14 @@ def initialize_telemetry_client(
550550 TelemetryClientFactory ._clients [
551551 session_id_hex
552552 ] = TelemetryClient (
553- telemetry_enabled = telemetry_enabled ,
554- session_id_hex = session_id_hex ,
555- auth_provider = auth_provider ,
556- host_url = host_url ,
557- executor = TelemetryClientFactory ._executor ,
558- batch_size = batch_size ,
559- client_context = client_context ,
560- )
553+ telemetry_enabled = telemetry_enabled ,
554+ session_id_hex = session_id_hex ,
555+ auth_provider = auth_provider ,
556+ host_url = host_url ,
557+ executor = TelemetryClientFactory ._executor ,
558+ batch_size = batch_size ,
559+ client_context = client_context ,
560+ )
561561 else :
562562 TelemetryClientFactory ._clients [
563563 session_id_hex
You can’t perform that action at this time.
0 commit comments