You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/09/08 02:40:13 UTC

[lucene-solr] branch reference_impl_dev updated: @799 Add another COL delete.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl_dev
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 83e5af9  @799 Add another COL delete.
83e5af9 is described below

commit 83e5af9eda9092ed2d76ad7971b42285fd15d664
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Mon Sep 7 21:39:59 2020 -0500

    @799 Add another COL delete.
---
 .../src/test/org/apache/solr/client/solrj/impl/CloudSolrClientTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/impl/CloudSolrClientTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/impl/CloudSolrClientTest.java
index ffe9af8..23b7591 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/impl/CloudSolrClientTest.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/impl/CloudSolrClientTest.java
@@ -699,6 +699,8 @@ public class CloudSolrClientTest extends SolrCloudTestCase {
 
       assertEquals(3, client.query("multicollection2", queryParams).getResults().size());
 
+      CollectionAdminRequest.deleteCollection(async1).process(cluster.getSolrClient());
+      CollectionAdminRequest.deleteCollection(async2).process(cluster.getSolrClient());
     }
 
   }