mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
a07cd5b008
commit
5285e8b6b6
2 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue