SOLR-14271: Delete CollectionsAPIAsyncDistributedZkTest.testAsyncIdBackCompat as that is no longer required (#1275)

This commit is contained in:
Anshum Gupta 2020-02-21 09:53:10 -08:00 committed by GitHub
parent 292bed0c42
commit bc41f25cc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 13 deletions

View File

@ -278,17 +278,4 @@ public class CollectionsAPIAsyncDistributedZkTest extends SolrCloudTestCase {
}
}
}
public void testAsyncIdBackCompat() throws Exception {
//remove with Solr 9
cluster.getZkClient().makePath("/overseer/collection-map-completed/mn-testAsyncIdBackCompat", true, true);
try {
CollectionAdminRequest.createCollection("testAsyncIdBackCompat","conf1",1,1)
.processAsync("testAsyncIdBackCompat", cluster.getSolrClient());
fail("Expecting exception");
} catch (SolrServerException e) {
assertTrue(e.getMessage().contains("Task with the same requestid already exists"));
}
}
}