Skip to content

Commit

Permalink
Merge pull request #231 from pelias/greenkeeper/pelias-config-2.12.0
Browse files Browse the repository at this point in the history
Update pelias-config to the latest version 🚀
  • Loading branch information
orangejulius authored Jul 28, 2017
2 parents 249c10c + dc79675 commit fac206a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"elasticsearch": "^12.0.1",
"joi": "^10.1.0",
"mergeable": "latest",
"pelias-config": "2.9.0"
"pelias-config": "2.12.0"
},
"devDependencies": {
"difflet": "^1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion test/fixtures/expected.json
Original file line number Diff line number Diff line change
Expand Up @@ -1566,7 +1566,7 @@
},
"index": {
"number_of_replicas": "999",
"number_of_shards": "1",
"number_of_shards": "5",
"refresh_interval": "1m"
}
},
Expand Down
2 changes: 1 addition & 1 deletion test/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ module.exports.tests.index = function(test, common) {
var s = settings();
t.equal(typeof s.index, 'object', 'index specified');
t.equal(s.index.number_of_replicas, "0", 'replicas will increase index time');
t.equal(s.index.number_of_shards, "1", 'sharding is only required in a distributed env');
t.equal(s.index.number_of_shards, "5", 'sharding value should use the elasticsearch default');
t.end();
});
};
Expand Down

0 comments on commit fac206a

Please sign in to comment.