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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to