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 40c310e commit 791ff1aCopy full SHA for 791ff1a
src/databricks/sql/telemetry/telemetry_client.py
@@ -183,9 +183,9 @@ def _export_event(self, event):
183
184
def _flush(self):
185
"""Flush the current batch of events to the server"""
186
- with self._lock:
187
- events_to_flush = self._events_batch.copy()
188
- self._events_batch = []
+ # with self._lock:
+ events_to_flush = self._events_batch.copy()
+ self._events_batch = []
189
190
if events_to_flush:
191
logger.debug("Flushing %s telemetry events to server", len(events_to_flush))
0 commit comments