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 dc2c19f08f
commit 6011444789
1 changed files with 5 additions and 0 deletions

View File

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