You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Joseph Ford (JIRA)" <ji...@apache.org> on 2016/10/19 13:18:58 UTC

[jira] [Created] (SOLR-9663) CollectionAdminRequest.ShardSpecificAdminRequest constructor doesn't use collection or shard

Joseph Ford created SOLR-9663:
---------------------------------

             Summary: CollectionAdminRequest.ShardSpecificAdminRequest constructor doesn't use collection or shard
                 Key: SOLR-9663
                 URL: https://issues.apache.org/jira/browse/SOLR-9663
             Project: Solr
          Issue Type: Bug
      Security Level: Public (Default Security Level. Issues are Public)
            Reporter: Joseph Ford
            Priority: Minor


I am trying to create a CollectionAdminRequest.ForceLeader:

{code}
ForceLeader forceLeader = CollectionAdminRequest.forceLeaderElection(collection, shard);
{code}

But when I do this, I get an exception:
"You must call setCollectionName() on this request"

Instead, I have to do this:
{code}
ForceLeader forceLeader = CollectionAdminRequest.forceLeaderElection(collection, shard);
forceLeader.setCollectionName(collection);
forceLeader.setShardName(shard);
{code}

I believe the fix might be to change the CollectionAdminRequest constructor to use the abstract setters defined in the same class.

https://github.com/apache/lucene-solr/blob/releases/lucene-solr/6.2.1/solr/solrj/src/java/org/apache/solr/client/solrj/request/CollectionAdminRequest.java#L235






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org