mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
Cutting number of feeds for fetching until mongo is sharded.
This commit is contained in:
parent
dc0507f43f
commit
c4b6bb6fd8
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class TaskFeeds(Task):
|
||||||
next_scheduled_update__lte=now,
|
next_scheduled_update__lte=now,
|
||||||
active=True,
|
active=True,
|
||||||
active_premium_subscribers__gte=1
|
active_premium_subscribers__gte=1
|
||||||
).order_by('?')[:400]
|
).order_by('?')[:200]
|
||||||
popular_count = popular_feeds.count()
|
popular_count = popular_feeds.count()
|
||||||
|
|
||||||
# Regular feeds
|
# Regular feeds
|
||||||
|
|
Loading…
Add table
Reference in a new issue