Tests: remove static bwc delete index timeout, so that the slow delete

failure can repro with additional logging
This commit is contained in:
Ryan Ernst 2015-04-08 23:29:37 -07:00
parent b52d24a031
commit c821b8d3b4
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class OldIndexBackwardsCompatibilityTests extends ElasticsearchIntegratio
}
void unloadIndex(String indexName) throws Exception {
ElasticsearchAssertions.assertAcked(client().admin().indices().prepareDelete(indexName).setTimeout(TimeValue.timeValueMinutes(1)).get());
ElasticsearchAssertions.assertAcked(client().admin().indices().prepareDelete(indexName).get());
ElasticsearchAssertions.assertAllFilesClosed();
}