Skip to content

Commit 207f90b

Browse files
committed
Change personal tracking rule update frequency to run every hour.
- Legacy-Id: 4623
1 parent 9ff6d88 commit 207f90b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/community/management/commands/update_community_lists.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Command(BaseCommand):
1313
def handle(self, *args, **options):
1414
now = datetime.datetime.now()
1515

16-
rules = Rule.objects.filter(last_updated__lt=now - datetime.timedelta(hours=12))
16+
rules = Rule.objects.filter(last_updated__lt=now - datetime.timedelta(hours=1))
1717
count = rules.count()
1818
index = 1
1919
for rule in rules:

0 commit comments

Comments
 (0)