aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2018-12-03 21:26:06 -0800
committerBryan Newbold <bnewbold@robocracy.org>2018-12-03 21:27:54 -0800
commit53e277895a71ac243d0f99155ae0a1658eecd84f (patch)
treea32a96bfac60878f71a72ca81b883b7a26a34061
parentfa8e4ecc0cece57b3f7fdb5dc77bc28d274c86e1 (diff)
downloadfatcat-preview.tar.gz
fatcat-preview.zip
remove textIcuSearch elastic filterx-attic-previewpreview
This was breaking, eg, DOI search with non-trivial characters. Because we set the tokenizer on individual fields, shouldn't be necessary on the whole query.
-rw-r--r--python/fatcat/search.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/python/fatcat/search.py b/python/fatcat/search.py
index b6826110..ac136cdd 100644
--- a/python/fatcat/search.py
+++ b/python/fatcat/search.py
@@ -18,7 +18,6 @@ def do_search(q, limit=50, fulltext_only=True):
"query": {
"query_string": {
"query": q,
- "analyzer": "textIcuSearch",
"default_operator": "AND",
"analyze_wildcard": True,
"lenient": True,