Skip to content

Commit cd02b01

Browse files
authored
Use https to obtain Lucene snapshots (#39458)
This commit changes the protocol used to download Lucene snapshots.
1 parent 4ba83cd commit cd02b01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildSrc/src/main/groovy/org/elasticsearch/gradle/BuildPlugin.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ class BuildPlugin implements Plugin<Project> {
591591
String revision = (luceneVersion =~ /\w+-snapshot-([a-z0-9]+)/)[0][1]
592592
repos.maven {
593593
name 'lucene-snapshots'
594-
url "http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
594+
url "https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
595595
}
596596
}
597597
}

0 commit comments

Comments
 (0)