Added functionality that checks for failed imports in queue that are no format upgrades

This commit is contained in:
Benjamin Harder
2024-04-07 14:18:32 +02:00
parent 7312a5a9c6
commit 637b901652
7 changed files with 105 additions and 43 deletions

View File

@@ -41,6 +41,7 @@ def showSettings(settingsDict):
logger.info('%s | Removing failed downloads', str(settingsDict['REMOVE_FAILED']))
logger.info('%s | Removing downloads missing metadata', str(settingsDict['REMOVE_METADATA_MISSING']))
logger.info('%s | Removing downloads missing files', str(settingsDict['REMOVE_MISSING_FILES']))
logger.info('%s | Removing downloads that fail on import (no format upgrade)', str(settingsDict['REMOVE_NO_FORMAT_UPGRADE']))
logger.info('%s | Removing orphan downloads', str(settingsDict['REMOVE_ORPHANS']))
logger.info('%s | Removing slow downloads', str(settingsDict['REMOVE_SLOW']))
logger.info('%s | Removing stalled downloads', str(settingsDict['REMOVE_STALLED']))