Skip to content

Commit

Permalink
feat(drop_es6): remove support for creating indices for ES6
Browse files Browse the repository at this point in the history
BREAKING CHANGE: creating *new* Pelias indices using elasticsearch 6 is no longer supported
  • Loading branch information
missinglink committed Aug 11, 2020
1 parent 78c3cd3 commit 3985629
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ node_js:
- 12
env:
matrix:
- ES_VERSION=6.8.6 JDK_VERSION=oraclejdk11
- ES_VERSION=7.6.1 JDK_VERSION=oraclejdk11
jdk:
- oraclejdk11
Expand Down
2 changes: 1 addition & 1 deletion scripts/create_index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const child_process = require('child_process');
const config = require('pelias-config').generate();
const es = require('elasticsearch');
const SUPPORTED_ES_VERSIONS = '>=6.5.4 || >=7.4.2';
const SUPPORTED_ES_VERSIONS = '>=7.4.2';

const cli = require('./cli');
const schema = require('../schema');
Expand Down

0 comments on commit 3985629

Please sign in to comment.