diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-24 15:04:22 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-24 15:04:22 -0700 |
commit | 45e7ae4c3f65e2d38011782d4ca6c2e67f9ffa1b (patch) | |
tree | 209fa8f138a0b8f928f8aa7e6a3c850fa9049453 /python | |
parent | 16a062665619491cde5cd64171a49691e3762b84 (diff) | |
download | fatcat-45e7ae4c3f65e2d38011782d4ca6c2e67f9ffa1b.tar.gz fatcat-45e7ae4c3f65e2d38011782d4ca6c2e67f9ffa1b.zip |
cut down max row count even further
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat/crossref_importer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/crossref_importer.py b/python/fatcat/crossref_importer.py index 122ecdf0..7ca800ff 100644 --- a/python/fatcat/crossref_importer.py +++ b/python/fatcat/crossref_importer.py @@ -191,7 +191,7 @@ class FatcatCrossrefImporter(FatcatImporter): # TODO: filter out huge releases; we'll get them later (and fix bug in # fatcatd) - if max(len(contribs), len(refs)) > 2500: + if max(len(contribs), len(refs)) > 1000: return None re = fatcat_client.ReleaseEntity( |