muse-dev[bot] commented on a change in pull request #2132: URL: https://github.com/apache/lucene-solr/pull/2132#discussion_r542964749
########## File path: solr/solrj/src/java/org/apache/solr/client/solrj/io/stream/FacetStream.java ########## @@ -545,6 +557,18 @@ public void open() throws IOException { cloudSolrClient = new Builder(hosts, Optional.empty()).withSocketTimeout(30000).withConnectionTimeout(15000).build(); } + if (params.getBool("plist", true)) { + params.remove("plist"); + final List<String> resolved = cloudSolrClient.getClusterStateProvider().resolveAlias(collection); Review comment: *NULL_DEREFERENCE:* object returned by `FacetStream.cloudSolrClient.getClusterStateProvider()` could be null and is dereferenced at line 562. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org