[kbn/es] pin 7.x snapshot until elastic/elasticsearch#39582 is merged (#32340)

* [kbn/es] pin 7.x snapshot until #39582 is merged

* snapshot needs version number

* need to use an older snapshot

* who checks todos?
This commit is contained in:
Spencer 2019-03-01 15:10:46 -08:00 committed by GitHub
parent a07cd5b008
commit 5285e8b6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -27,6 +27,11 @@ const { BASE_PATH } = require('../paths');
const { installArchive } = require('./archive');
const { log: defaultLog, cache } = require('../utils');
// pin TEST_ES_SNAPSHOT_VERSION until https://github.com/elastic/elasticsearch/pull/39582 is merged and snapshots have updated
if (!process.env.TEST_ES_SNAPSHOT_VERSION) {
process.env.TEST_ES_SNAPSHOT_VERSION = '7.1.0-36d8499e';
}
/**
* Download an ES snapshot
*

View file

@ -9,9 +9,6 @@ import {
EsProvider,
} from './services';
// Temporary until https://github.com/elastic/kibana/pull/29184 is merged
delete process.env.TEST_ES_SNAPSHOT_VERSION;
export default async function ({ readConfigFile }) {
// Read the Kibana API integration tests config file so that we can utilize its services.