Fix more download URLs

This commit is contained in:
Simon Willnauer 2015-04-28 20:39:34 +02:00
parent 3ad279b8fd
commit c0d3205146
2 changed files with 2 additions and 2 deletions

View File

@ -4,5 +4,5 @@ elasticsearch binary: arch-independent-package-contains-binary-or-object
elasticsearch binary: unstripped-binary-or-object elasticsearch binary: unstripped-binary-or-object
# Ignore arch dependent warnings, we chose the right libs on start # Ignore arch dependent warnings, we chose the right libs on start
elasticsearch binary: arch-dependent-file-in-usr-share elasticsearch binary: arch-dependent-file-in-usr-share
# Please check our changelog at http://www.elasticsearch.org/downloads/ # Please check our changelog at http://www.elastic.co/downloads/elasticsearch
elasticsearch binary: changelog-file-missing-in-native-package elasticsearch binary: changelog-file-missing-in-native-package

View File

@ -422,7 +422,7 @@ public class PluginManagerTests extends ElasticsearchIntegrationTest {
@Test @Test
@Network @Network
public void testInstallPluginWithElasticsearchDownloadService() throws IOException { public void testInstallPluginWithElasticsearchDownloadService() throws IOException {
assumeTrue("download.elasticsearch.org is accessible", isDownloadServiceWorking("download.elasticsearch.org", 80, "/elasticsearch/ci-test.txt")); assumeTrue("download.elastic.co is accessible", isDownloadServiceWorking("download.elastic.co", 80, "/elasticsearch/ci-test.txt"));
singlePluginInstallAndRemove("elasticsearch/elasticsearch-transport-thrift/2.4.0", null); singlePluginInstallAndRemove("elasticsearch/elasticsearch-transport-thrift/2.4.0", null);
} }