Skip to content

Commit 5dca1c2

Browse files
authored
Fix ES mapping typo (#267)
1 parent 69ea36a commit 5dca1c2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

databuilder/publisher/elasticsearch_constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"description": {
4444
"type": "text",
4545
"analyzer": "simple",
46-
"search_analyzer": "whitespace",
46+
"search_analyzer": "whitespace"
4747
},
4848
"column_names": {
4949
"type":"text",
@@ -57,7 +57,7 @@
5757
"column_descriptions": {
5858
"type": "text",
5959
"analyzer": "simple",
60-
"search_analyzer": "whitespace",
60+
"search_analyzer": "whitespace"
6161
},
6262
"tags": {
6363
"type": "keyword"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44

5-
__version__ = '2.5.15'
5+
__version__ = '2.5.16'
66

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

0 commit comments

Comments
 (0)