forked from M-Labs/artiq
gui: do 60114447
properly
This commit is contained in:
parent
010c68f0a1
commit
059aa2f83e
|
@ -71,13 +71,14 @@ class StateManager(TaskObject):
|
||||||
|
|
||||||
async def _do(self):
|
async def _do(self):
|
||||||
try:
|
try:
|
||||||
while True:
|
try:
|
||||||
await asyncio.sleep(self.autosave_period)
|
while True:
|
||||||
|
await asyncio.sleep(self.autosave_period)
|
||||||
|
self.save()
|
||||||
|
finally:
|
||||||
self.save()
|
self.save()
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
pass
|
pass
|
||||||
except:
|
except:
|
||||||
logger.error("Uncaught exception attempting to save state",
|
logger.error("Uncaught exception attempting to save state",
|
||||||
exc_info=True)
|
exc_info=True)
|
||||||
finally:
|
|
||||||
self.save()
|
|
||||||
|
|
Loading…
Reference in New Issue