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 e432ea4 commit f4fdb08Copy full SHA for f4fdb08
src/databricks/sql/telemetry/telemetry_client.py
@@ -104,15 +104,15 @@ class BaseTelemetryClient(ABC):
104
105
@abstractmethod
106
def export_initial_telemetry_log(self, driver_connection_params, user_agent):
107
- raise NotImplementedError("Subclasses must implement export_initial_telemetry_log")
+ pass
108
109
110
def export_failure_log(self, error_name, error_message):
111
- raise NotImplementedError("Subclasses must implement export_failure_log")
112
113
114
def close(self):
115
- raise NotImplementedError("Subclasses must implement close")
116
117
118
# A single instance of the no-op client that can be reused
0 commit comments