2
0

fix statefile load, increasing cleanup time

This commit is contained in:
Stefan Bühler 2022-04-07 17:18:09 +02:00
parent e1b1ec195f
commit 1896f33c77

View File

@ -183,7 +183,7 @@ class Database:
if self._state_filename:
nursery.start_soon(self._run_statefile)
while True:
await trio.sleep(10) # sleep 15 minutes
await trio.sleep(60) # sleep 15 minutes
_logger.debug("Running database cleanup")
self._drop_outdated()
if self._changed_since_last_cleanup:
@ -279,7 +279,7 @@ class Database:
except google.protobuf.message.DecodeError as e:
_logger.error(f"Failed to decode chunk from statefile, trying next one: {e}")
continue
for state in states:
for state in states.states:
errors = 0
try:
pu.received_mac_state(state)