[es] remove alpha1 suffix (#25763)

This commit is contained in:
Jonathan Budzenski 2018-11-20 15:51:49 -06:00 committed by GitHub
parent 7fbac45ec7
commit 70788a9a3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,8 +44,7 @@ exports.downloadSnapshot = async function installSnapshot({
installPath = path.resolve(basePath, version),
log = defaultLog,
}) {
// TODO: remove -alpha1 once elastic/elasticsearch#35172 has been merged
const fileName = getFilename(license, version + '-alpha1');
const fileName = getFilename(license, version);
const url = `https://snapshots.elastic.co/downloads/elasticsearch/${fileName}`;
const dest = path.resolve(basePath, 'cache', fileName);