mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2025-12-15 16:43:38 +00:00
Fix old alerts not getting deleted
This commit is contained in:
@@ -38,7 +38,7 @@ class CleanupTimer:
|
|||||||
for id in list(self.alerts.iterkeys()):
|
for id in list(self.alerts.iterkeys()):
|
||||||
alert = self.alerts[id]
|
alert = self.alerts[id]
|
||||||
if alert.expired():
|
if alert.expired():
|
||||||
self.alerts.evict(id)
|
self.alerts.delete(id)
|
||||||
|
|
||||||
self.status = "OK"
|
self.status = "OK"
|
||||||
self.last_cleanup_time = datetime.now(pytz.UTC)
|
self.last_cleanup_time = datetime.now(pytz.UTC)
|
||||||
|
|||||||
Reference in New Issue
Block a user