chore(NA): enable snapshot pinning for custom builds for elasticsearch 7.6.0 (#51608)

This commit is contained in:
Tiago Costa 2019-11-25 16:34:19 +00:00 committed by Spencer
parent 71a7f8a7ea
commit be2cdad4f8

View file

@ -27,7 +27,8 @@ function getCustomSnapshotUrl() {
// force use of manually created snapshots until live ones are available
if (!process.env.KBN_ES_SNAPSHOT_URL && !process.argv.some(isVersionFlag)) {
// return 'https://storage.googleapis.com/kibana-ci-tmp-artifacts/{name}-{version}-{os}-x86_64.{ext}';
return undefined;
// return undefined;
return 'https://storage.googleapis.com/kibana-ci-tmp-artifacts/{name}-{version}-{os}-x86_64.{ext}';
}
if (process.env.KBN_ES_SNAPSHOT_URL && process.env.KBN_ES_SNAPSHOT_URL !== 'false') {