You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2021/08/10 13:20:47 UTC

[GitHub] [pulsar] Technoboy- commented on issue #11628: Flaky-test: ElasticSearchClientTests.testBulkRetry

Technoboy- commented on issue #11628:
URL: https://github.com/apache/pulsar/issues/11628#issuecomment-896022784


   Hi @eolivelli 
   I take a look at the ElasticSearchClientTests#testBulkRetry, I think we may name every index randomly or delete index after each test . 
   ```
   @Test
   public void testBulkRetry() throws Exception {
        final String index = "indexbulktest" + final String index = "indexbulktest" + UUID.randomUUID().toString();
   ```
   
   Or delete index :
   ```
   @Test
   public void testBulkRetry() throws Exception {
        final String index = "indexbulktest";
        ...
        client.deleteIndex(index);
   ```
   Could you help give some ideas about this issue?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org