mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Using a probability from redis to determine whether or not to skip a fetch.
This commit is contained in:
parent
936088f09c
commit
ac639380c0
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ class UpdateFeeds(Task):
|
|||
|
||||
options = {
|
||||
'fake': bool(MStatistics.get('fake_fetch')),
|
||||
'quick': bool(MStatistics.get('quick_fetch')),
|
||||
'quick': float(MStatistics.get('quick_fetch', 0)),
|
||||
}
|
||||
|
||||
if not isinstance(feed_pks, list):
|
||||
|
|
Loading…
Add table
Reference in a new issue