Skip to content

Commit

Permalink
tui: supress scan errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver-sanders committed Oct 21, 2024
1 parent 0a88f7a commit fe207fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cylc/flow/tui/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,8 @@ async def _update(self):
# do a workflow scan if it's due
update_start_time = time()
if update_start_time - last_scan_time > self.BASE_SCAN_INTERVAL:
data = await self._scan()
with suppress(Exception):
data = await self._scan()

# get the next snapshot from workflows we are subscribed to
update = await self._run_update(data)
Expand Down

0 comments on commit fe207fd

Please sign in to comment.