klloe-global_config
Scott 8 years ago
commit 9c09e1d14e

@ -151,13 +151,13 @@ 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 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

Loading…
Cancel
Save