From a1fa86f3665f2c43031fab63ac257bbdc0cb12a0 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 21 Jan 2015 05:05:19 +0000 Subject: [PATCH] Extend pkgdb cache timeout for FMN. --- roles/notifs/backend/templates/fmn.consumer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/notifs/backend/templates/fmn.consumer.py b/roles/notifs/backend/templates/fmn.consumer.py index ac5081fa80..e0b8720fad 100644 --- a/roles/notifs/backend/templates/fmn.consumer.py +++ b/roles/notifs/backend/templates/fmn.consumer.py @@ -37,11 +37,11 @@ config = { {% endif %} "fmn.rules.cache": { "backend": "dogpile.cache.dbm", - # 28800 is 8 hours.. a really long time. + # 56700 is 16 hours.. a really long time. # As of this commit: http://da.gd/oZBe that should be okay, because our # backend should intelligently invalidate its pkgdb2 cache if it # receives a pkgdb2 message. - "expiration_time": 28800, + "expiration_time": 56700, "arguments": { "filename": "/dev/shm/fmn-cache.dbm", },