diff options
author | zsloan | 2024-06-26 21:52:46 +0000 |
---|---|---|
committer | zsloan | 2024-06-27 14:34:42 -0500 |
commit | f6bcad10df3b6663d19227d2cf58d2e2b52bbe91 (patch) | |
tree | bff37b70330761567b1d32d7875b8d07ab6d937b /gn2/wqflask | |
parent | 8b8169603015571685859aa9c7170331751e01c0 (diff) | |
download | genenetwork2-f6bcad10df3b6663d19227d2cf58d2e2b52bbe91.tar.gz |
Increase MAX_SEARCH_RESULTS to 50000
Diffstat (limited to 'gn2/wqflask')
-rw-r--r-- | gn2/wqflask/search_results.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn2/wqflask/search_results.py b/gn2/wqflask/search_results.py index 357b3f09..b269b031 100644 --- a/gn2/wqflask/search_results.py +++ b/gn2/wqflask/search_results.py @@ -26,7 +26,7 @@ from gn2.utility.hmac import hmac_creation from gn2.utility.tools import get_setting, GN2_BASE_URL, GN3_LOCAL_URL from gn2.utility.type_checking import is_str -MAX_SEARCH_RESULTS = 20000 # Max number of search results, passed to Xapian search (this needs to match the value in GN3!) +MAX_SEARCH_RESULTS = 50000 # Max number of search results, passed to Xapian search (this needs to match the value in GN3!) class SearchResultPage: #maxReturn = 3000 |