Skip to content

Commit

Permalink
Fix ES mapping typo (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
feng-tao committed May 20, 2020
1 parent 69ea36a commit 5dca1c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions databuilder/publisher/elasticsearch_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"description": {
"type": "text",
"analyzer": "simple",
"search_analyzer": "whitespace",
"search_analyzer": "whitespace"
},
"column_names": {
"type":"text",
Expand All @@ -57,7 +57,7 @@
"column_descriptions": {
"type": "text",
"analyzer": "simple",
"search_analyzer": "whitespace",
"search_analyzer": "whitespace"
},
"tags": {
"type": "keyword"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages


__version__ = '2.5.15'
__version__ = '2.5.16'

requirements_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'requirements.txt')
with open(requirements_path) as requirements_file:
Expand Down

0 comments on commit 5dca1c2

Please sign in to comment.