Skip to content

Commit

Permalink
feat(elasticsearch): support for dynamically specifying the elasticse…
Browse files Browse the repository at this point in the history
…arch _type from config
  • Loading branch information
missinglink committed Nov 25, 2019
1 parent cabddf4 commit de66daa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
}]
},
"elasticsearch": {
"_type": "doc",
"settings": {
"index": {
"number_of_replicas": "0",
Expand Down Expand Up @@ -70,7 +69,8 @@
}
},
"schema": {
"indexName": "pelias"
"indexName": "pelias",
"typeName": "doc"
},
"logger": {
"level": "debug",
Expand Down
4 changes: 2 additions & 2 deletions test/expected-deep.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
}]
},
"elasticsearch": {
"_type": "doc",
"settings": {
"index": {
"number_of_replicas": "0",
Expand Down Expand Up @@ -75,7 +74,8 @@
}
},
"schema": {
"indexName": "pelias"
"indexName": "pelias",
"typeName": "doc"
},
"logger": {
"level": "debug",
Expand Down

0 comments on commit de66daa

Please sign in to comment.