Revert "Bumping min to fetch by 1.5X to root out 12 minute broken feed. If this succeeds, narrow down the min_to_decay and then find the feed."

This reverts commit fd16bb0b73.
This commit is contained in:
Samuel Clay 2022-09-11 08:45:29 -04:00
parent fd16bb0b73
commit e83a8e5a9b
2 changed files with 2 additions and 5 deletions

View file

@ -2353,7 +2353,7 @@ class Feed(models.Model):
self.archive_subscribers,
self.pro_subscribers,
spd))
return total*1.5
return total
def set_next_scheduled_update(self, verbose=False, skip_scheduling=False):
r = redis.Redis(connection_pool=settings.REDIS_FEED_UPDATE_POOL)

View file

@ -5,10 +5,7 @@ import sys
if __name__ == "__main__":
role = "task"
command = None
if len(sys.argv) > 1:
role = sys.argv[1]
if len(sys.argv) > 2:
command = sys.argv[2]
tlnb.main(roles=[role], command=command)
tlnb.main(roles=[role])