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 4b0f483 commit feb387aCopy full SHA for feb387a
src/databricks/sql/backend/sea/queue.py
@@ -277,7 +277,8 @@ def _worker_loop(self):
277
if not links_downloaded:
278
self._shutdown_event.set()
279
logger.debug("LinkFetcher[%s]: worker thread exiting", self._statement_id)
280
- self._link_data_update.notify_all()
+ with self._link_data_update:
281
+ self._link_data_update.notify_all()
282
283
def start(self):
284
"""Spawn the worker thread."""
0 commit comments