From b343d688c541d77c9cdce72e098bac6cc94d0081 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Wed, 8 Apr 2015 21:24:10 -0700 Subject: [PATCH] Tests: Increase delete timeout for static bwc tests to 1 minute --- .../bwcompat/OldIndexBackwardsCompatibilityTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/elasticsearch/bwcompat/OldIndexBackwardsCompatibilityTests.java b/src/test/java/org/elasticsearch/bwcompat/OldIndexBackwardsCompatibilityTests.java index 3b647cc4f68..e106029a675 100644 --- a/src/test/java/org/elasticsearch/bwcompat/OldIndexBackwardsCompatibilityTests.java +++ b/src/test/java/org/elasticsearch/bwcompat/OldIndexBackwardsCompatibilityTests.java @@ -158,7 +158,7 @@ public class OldIndexBackwardsCompatibilityTests extends ElasticsearchIntegratio } void unloadIndex(String indexName) throws Exception { - ElasticsearchAssertions.assertAcked(client().admin().indices().prepareDelete(indexName).setTimeout(TimeValue.timeValueSeconds(30)).get()); + ElasticsearchAssertions.assertAcked(client().admin().indices().prepareDelete(indexName).setTimeout(TimeValue.timeValueMinutes(1)).get()); ElasticsearchAssertions.assertAllFilesClosed(); }