Safety net for cleaning Kodi file table

This commit is contained in:
croneter 2018-11-24 09:56:30 +01:00
parent 3e754dfd1b
commit fb364a2275

View file

@ -524,9 +524,13 @@ def _clean_file_table():
""" """
LOG.debug('Start cleaning Kodi files table') LOG.debug('Start cleaning Kodi files table')
app.APP.monitor.waitForAbort(2) app.APP.monitor.waitForAbort(2)
with kodi_db.KodiVideoDB() as kodidb_1: try:
with kodi_db.KodiVideoDB() as kodidb_2: with kodi_db.KodiVideoDB() as kodidb_1:
for file_id in kodidb_1.obsolete_file_ids(): with kodi_db.KodiVideoDB() as kodidb_2:
LOG.debug('Removing obsolete Kodi file_id %s', file_id) for file_id in kodidb_1.obsolete_file_ids():
kodidb_2.remove_file(file_id, remove_orphans=False) LOG.debug('Removing obsolete Kodi file_id %s', file_id)
LOG.debug('Done cleaning up Kodi file table') kodidb_2.remove_file(file_id, remove_orphans=False)
except utils.OperationalError:
LOG.debug('Database was locked, unable to clean file table')
else:
LOG.debug('Done cleaning up Kodi file table')