gerlowskija commented on code in PR #4240:
URL: https://github.com/apache/solr/pull/4240#discussion_r3395501033
##########
solr/core/src/java/org/apache/solr/handler/admin/api/GetNodeSystemInfo.java:
##########
@@ -62,7 +62,41 @@ public NodeSystemResponse getNodeSystemInfo(String nodes) {
SystemInfoProvider provider = new SystemInfoProvider(solrQueryRequest);
provider.getNodeSystemInfo(response);
if (log.isTraceEnabled()) {
- log.trace("Node {}, core root: {}", response.node, response.coreRoot);
+ log.trace("Node {}, core root: {}", response.nodeInfo.node,
response.nodeInfo.coreRoot);
+ }
+ return response;
+ }
+
+ @Override
+ public NodeSystemResponse getSpecificNodeSystemInfo(String requestedInfo,
String nodes) {
+ NodeSystemResponse response =
instantiateJerseyResponse(NodeSystemResponse.class);
+ solrQueryResponse.setHttpCaching(false);
+
Review Comment:
This is now no longer needed as it's been switched to be an enum.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]