Skip to content

Commit 7394295

Browse files
committed
changed type of _clients in TelemetryClientFactory
Signed-off-by: Sai Shree Pradhan <saishree.pradhan@databricks.com>
1 parent c084846 commit 7394295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/databricks/sql/telemetry/telemetry_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,8 @@ class TelemetryClientFactory:
269269
"""
270270

271271
_clients: Dict[
272-
str, TelemetryClient
273-
] = {} # Map of connection_uuid -> TelemetryClient
272+
str, BaseTelemetryClient
273+
] = {} # Map of connection_uuid -> BaseTelemetryClient
274274
_executor: Optional[ThreadPoolExecutor] = None
275275
_initialized: bool = False
276276
_lock = threading.Lock() # Thread safety for factory operations

0 commit comments

Comments
 (0)