diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-20 01:53:21 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-20 01:53:21 +0200 |
commit | b887b7743d8ef2edc2e5daef67ef96c10596a5c8 (patch) | |
tree | fa92ce917edd7b531676d6659de1ecbe640eadad | |
parent | 895110390234aac5c6510a9312890ecfdb20186f (diff) | |
download | refcat-b887b7743d8ef2edc2e5daef67ef96c10596a5c8.tar.gz refcat-b887b7743d8ef2edc2e5daef67ef96c10596a5c8.zip |
tasks: increase default limit for cdx
-rw-r--r-- | python/refcat/tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/refcat/tasks.py b/python/refcat/tasks.py index aa473f6..2d98f5c 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1498,7 +1498,7 @@ class CDXURL(Refcat): Stub implementation of ad-hoc CDX. We only consider a subset of documents. """ cache = luigi.Parameter(default="/magna/.cache/skate/cdx", significant=False) - limit = luigi.IntParameter(default=25000, significant=False) + limit = luigi.IntParameter(default=80000, significant=False) def requires(self): return RefsURL() |