diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2021-07-15 18:12:01 +0200 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2021-07-15 18:12:01 +0200 |
commit | ce3e161a282bf6a12c9a8ad0e7cef36afae50d3b (patch) | |
tree | 1d60eb5f8c6e5062ec3bf703232ac7d429722177 /python | |
parent | e0aa71419f3a69c226bbdbda960267ac4dd04413 (diff) | |
download | refcat-ce3e161a282bf6a12c9a8ad0e7cef36afae50d3b.tar.gz refcat-ce3e161a282bf6a12c9a8ad0e7cef36afae50d3b.zip |
tasks: reduce sample size
Diffstat (limited to 'python')
-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 1dfaccb..c721486 100644 --- a/python/refcat/tasks.py +++ b/python/refcat/tasks.py @@ -1497,7 +1497,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=50000, significant=False) + limit = luigi.IntParameter(default=25000, significant=False) def requires(self): return RefsURL() |