fix nuke_cutoff not being respected

klloe-global_config
crypticgeek 7 years ago
parent b3bb5fa129
commit 4bc7072155

@ -151,14 +151,14 @@ class Shredder(object):
self._logger.debug("Deleting due to blacklist")
count_removed += 1
self._remove(item)
elif self._check_whitelist(item):
self._logger.debug("Skipping due to: whitelisted")
continue
if created <= self._nuke_cutoff:
elif created <= self._nuke_cutoff:
self._logger.debug("Item occurs prior to nuke cutoff")
count_removed += 1
self._remove(item)
elif created > self._recent_cutoff:
elif self._check_whitelist(item):
self._logger.debug("Skipping due to: whitelisted")
continue
elif created > self._recent_cutoff:
self._logger.debug("Skipping due to: too recent")
continue
else:

Loading…
Cancel
Save