Skip to content

Commit

Permalink
Use https to obtain Lucene snapshots (#39458)
Browse files Browse the repository at this point in the history
This commit changes the protocol used to download Lucene snapshots.
  • Loading branch information
jasontedor authored Feb 27, 2019
1 parent 4ba83cd commit cd02b01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ class BuildPlugin implements Plugin<Project> {
String revision = (luceneVersion =~ /\w+-snapshot-([a-z0-9]+)/)[0][1]
repos.maven {
name 'lucene-snapshots'
url "http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
url "https://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/${revision}"
}
}
}
Expand Down

0 comments on commit cd02b01

Please sign in to comment.