remove ignore 400 on index creation

This commit is contained in:
2017-03-01 16:01:28 -07:00
parent 9b02bdf56c
commit 79affbce76
2 changed files with 4 additions and 1 deletions

View File

@@ -34,7 +34,6 @@ export default function createIndex(client, indexName, doctype = DEFAULT_SETTING
.then((exists) => {
if (!exists) {
return client.indices.create({
ignore: 400,
index: indexName,
body: body
})