2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-04 17:31:10 +08:00

gui: log error and bail out on artiq_gui.pyon write failure (#360)

This commit is contained in:
Sebastien Bourdeauducq 2016-03-30 01:45:00 +08:00
parent 7cff4977b4
commit b64cea0a79

View File

@ -74,5 +74,10 @@ class StateManager(TaskObject):
while True: while True:
await asyncio.sleep(self.autosave_period) await asyncio.sleep(self.autosave_period)
self.save() self.save()
except asyncio.CancelledError:
pass
except:
logger.error("Uncaught exception attempting to save state",
exc_info=True)
finally: finally:
self.save() self.save()