forked from M-Labs/artiq
1
0
Fork 0

gui: do 60114447 properly

This commit is contained in:
Sebastien Bourdeauducq 2016-03-30 01:47:50 +08:00
parent 010c68f0a1
commit 059aa2f83e
1 changed files with 5 additions and 4 deletions

View File

@ -71,13 +71,14 @@ class StateManager(TaskObject):
async def _do(self):
try:
while True:
await asyncio.sleep(self.autosave_period)
try:
while True:
await asyncio.sleep(self.autosave_period)
self.save()
finally:
self.save()
except asyncio.CancelledError:
pass
except:
logger.error("Uncaught exception attempting to save state",
exc_info=True)
finally:
self.save()