Compare commits

...

2 Commits

Author SHA1 Message Date
20a41d3381 1.0.26 2018-12-13 00:19:50 +01:00
b2019b33f8 fix(core): update 2018-12-13 00:19:50 +01:00
3 changed files with 4 additions and 3 deletions

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/elasticsearch",
"version": "1.0.25",
"version": "1.0.26",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "@mojoio/elasticsearch",
"version": "1.0.25",
"version": "1.0.26",
"private": false,
"description": "log to elasticsearch in a kibana compatible format",
"main": "dist/index.js",

View File

@ -52,7 +52,8 @@ export class ElasticIndex {
const done2 = plugins.smartpromise.defer();
this.elasticSearchRef.client.indices.create(
{
waitForActiveShards: '2',
waitForActiveShards: '1',
index: indexArg
},
(error, response) => {