You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by cp...@apache.org on 2022/03/14 10:41:49 UTC

[solr] branch branch_9x updated: Add missing comma in TestCloudSearcherWarming's config requests' JSON. (#710)

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

cpoerschke pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new 95f5919  Add missing comma in TestCloudSearcherWarming's config requests' JSON. (#710)
95f5919 is described below

commit 95f5919337ade8366f53ace05d811359af3091b8
Author: Christine Poerschke <cp...@apache.org>
AuthorDate: Mon Mar 14 10:39:10 2022 +0000

    Add missing comma in TestCloudSearcherWarming's config requests' JSON. (#710)
    
    (cherry picked from commit 65d7a3d2a4f24c8b2876b046db21f2eb6c02d62b)
---
 .../core/src/test/org/apache/solr/cloud/TestCloudSearcherWarming.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/cloud/TestCloudSearcherWarming.java b/solr/core/src/test/org/apache/solr/cloud/TestCloudSearcherWarming.java
index 66be2dc..5c403f4 100644
--- a/solr/core/src/test/org/apache/solr/cloud/TestCloudSearcherWarming.java
+++ b/solr/core/src/test/org/apache/solr/cloud/TestCloudSearcherWarming.java
@@ -103,7 +103,7 @@ public class TestCloudSearcherWarming extends SolrCloudTestCase {
         "{"
             + "'add-listener' : {'name':'newSearcherListener','event':'newSearcher', 'class':'"
             + SleepingSolrEventListener.class.getName()
-            + "'}"
+            + "'},"
             + "'add-listener' : {'name':'firstSearcherListener','event':'firstSearcher', 'class':'"
             + SleepingSolrEventListener.class.getName()
             + "'}"
@@ -169,7 +169,7 @@ public class TestCloudSearcherWarming extends SolrCloudTestCase {
         "{"
             + "'add-listener' : {'name':'newSearcherListener','event':'newSearcher', 'class':'"
             + SleepingSolrEventListener.class.getName()
-            + "'}"
+            + "'},"
             + "'add-listener' : {'name':'firstSearcherListener','event':'firstSearcher', 'class':'"
             + SleepingSolrEventListener.class.getName()
             + "'}"