You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2019/08/20 01:49:14 UTC

[lucene-solr] branch master updated: SOLR-13650: precommit errors fixed

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d51a33f  SOLR-13650: precommit errors fixed
d51a33f is described below

commit d51a33f58f627eb4be2d450e849708418e53b2f2
Author: noble <no...@apache.org>
AuthorDate: Tue Aug 20 11:48:56 2019 +1000

    SOLR-13650: precommit errors fixed
---
 .../core/src/test/org/apache/solr/handler/TestContainerReqHandler.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/solr/core/src/test/org/apache/solr/handler/TestContainerReqHandler.java b/solr/core/src/test/org/apache/solr/handler/TestContainerReqHandler.java
index ad8612e..44c1d1e 100644
--- a/solr/core/src/test/org/apache/solr/handler/TestContainerReqHandler.java
+++ b/solr/core/src/test/org/apache/solr/handler/TestContainerReqHandler.java
@@ -67,6 +67,7 @@ import org.junit.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import static java.nio.charset.StandardCharsets.UTF_8;
 import static org.apache.solr.cloud.TestCryptoKeys.readFile;
 import static org.apache.solr.common.params.CommonParams.JAVABIN;
 import static org.apache.solr.common.params.CommonParams.WT;
@@ -583,7 +584,7 @@ public class TestContainerReqHandler extends SolrCloudTestCase {
         "          \"initialSize\":\"512\" , \"package\":\"cache_pkg\"}}}}";
     MiniSolrCloudCluster cluster = configureCluster(4)
         .addConfig("conf", configset("cloud-minimal"),
-            Collections.singletonMap(ConfigOverlay.RESOURCE_NAME, overlay.getBytes()))
+            Collections.singletonMap(ConfigOverlay.RESOURCE_NAME, overlay.getBytes(UTF_8)))
         .configure();
     try {
       String payload = "{add-package:{name : 'cache_pkg', url: 'http://localhost:" + port + "/jar1.jar', " +