forked from M-Labs/artiq
gui: log error and bail out on artiq_gui.pyon write failure (#360)
This commit is contained in:
parent
7cff4977b4
commit
b64cea0a79
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue