From 207f90b58fc4eec54a8477a70e3ca1416cce54b2 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 20 Jul 2012 11:34:23 +0000 Subject: [PATCH] Change personal tracking rule update frequency to run every hour. - Legacy-Id: 4623 --- ietf/community/management/commands/update_community_lists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/community/management/commands/update_community_lists.py b/ietf/community/management/commands/update_community_lists.py index 936a6dcee..4191c6f5d 100644 --- a/ietf/community/management/commands/update_community_lists.py +++ b/ietf/community/management/commands/update_community_lists.py @@ -13,7 +13,7 @@ class Command(BaseCommand): def handle(self, *args, **options): now = datetime.datetime.now() - rules = Rule.objects.filter(last_updated__lt=now - datetime.timedelta(hours=12)) + rules = Rule.objects.filter(last_updated__lt=now - datetime.timedelta(hours=1)) count = rules.count() index = 1 for rule in rules: