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 2020/09/18 10:33:09 UTC

[lucene-solr] branch branch_8x updated: SOLR-14871: Wrong field name in POJO

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

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


The following commit(s) were added to refs/heads/branch_8x by this push:
     new af582d0  SOLR-14871: Wrong field name in POJO
af582d0 is described below

commit af582d0583452e1b7b3648b7af16035456c42455
Author: noblepaul <no...@gmail.com>
AuthorDate: Fri Sep 18 20:32:46 2020 +1000

    SOLR-14871: Wrong field name in POJO
---
 .../org/apache/solr/client/solrj/request/beans/ClusterPropInfo.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/solrj/src/java/org/apache/solr/client/solrj/request/beans/ClusterPropInfo.java b/solr/solrj/src/java/org/apache/solr/client/solrj/request/beans/ClusterPropInfo.java
index fe768be..b8de08d 100644
--- a/solr/solrj/src/java/org/apache/solr/client/solrj/request/beans/ClusterPropInfo.java
+++ b/solr/solrj/src/java/org/apache/solr/client/solrj/request/beans/ClusterPropInfo.java
@@ -54,7 +54,7 @@ public class ClusterPropInfo implements ReflectMapWriter {
     public CollectionDefaults collection;
 
     @JsonProperty
-    public CollectionDefaults cluster;
+    public ClusterInfo cluster;
 
   }