bszabo97 commented on code in PR #1182: URL: https://github.com/apache/solr/pull/1182#discussion_r1145083082
########## solr/core/src/java/org/apache/solr/packagemanager/PackageManager.java: ########## @@ -228,20 +230,20 @@ public List<SolrPackageInstance> fetchInstalledPackageInstances() throws SolrExc public Map<String, SolrPackageInstance> getPackagesDeployed(String collection) { Map<String, String> packages = null; try { - NavigableObject result = - (NavigableObject) - Utils.executeGET( - solrClient.getHttpClient(), - solrBaseUrl - + PackageUtils.getCollectionParamsPath(collection) - + "/PKG_VERSIONS?omitHeader=true&wt=javabin", - Utils.JAVABINCONSUMER); + Map<String, String[]> paramsMap = new LinkedHashMap<>(); + paramsMap.put("omitHeader", new String[] {"true"}); + paramsMap.put("wt", new String[] {"javabin"}); + NamedList<Object> result = + solrClient.request( + new GenericSolrRequest( + SolrRequest.METHOD.GET, + PackageUtils.getCollectionParamsPath(collection) + "/PKG_VERSIONS", + new ModifiableSolrParams(paramsMap))); packages = (Map<String, String>) result._get("/response/params/PKG_VERSIONS", Collections.emptyMap()); - } catch (PathNotFoundException ex) { - // Don't worry if PKG_VERSION wasn't found. It just means this collection was never touched by - // the package manager. Review Comment: Valid point, I added it back, thank you! -- 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. To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org