jeremytang-db commented on code in PR #3191: URL: https://github.com/apache/arrow-adbc/pull/3191#discussion_r2240685963
########## csharp/src/Drivers/Databricks/DatabricksConnection.cs: ########## @@ -66,13 +71,22 @@ internal class DatabricksConnection : SparkHttpConnection private string _traceParentHeaderName = "traceparent"; private bool _traceStateEnabled = false; + private DatabricksActivityListener _listener; + private DriverConnectionParameters _connectionParams; + private HostDetails _hostDetails; + private ClientContext _clientContext; + // Default namespace private TNamespace? _defaultNamespace; private HttpClient? _authHttpClient; public DatabricksConnection(IReadOnlyDictionary<string, string> properties) : base(properties) { + _listener = new DatabricksActivityListener(); Review Comment: Update: because of Bruce's comment, I updated TelemetryHelper to be non static. So to avoid duplicate reports, I made DatabricksActivityListener static. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org