This commit is contained in:
2026-01-20 03:33:11 -08:00
parent 1f65f9de2a
commit 1e2054189b
4 changed files with 143 additions and 115 deletions

View File

@@ -997,7 +997,12 @@ class PipelineLiveProgress:
# Safe to call whether Live is running or paused.
if self._live is not None:
try:
self._live.stop()
try:
self._live.stop(clear=True)
except TypeError:
self._live.stop()
except Exception:
self._live.stop()
except Exception:
pass