This is an automated email from the ASF dual-hosted git repository.
tflobbe pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new eb5e1f2292d SOLR-16831: Fix precommit
eb5e1f2292d is described below
commit eb5e1f2292dfb6fd4ac1385331106b25435b95ab
Author: Tomas Fernandez Lobbe <[email protected]>
AuthorDate: Thu Jun 22 17:27:01 2023 -0700
SOLR-16831: Fix precommit
---
solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java | 1 -
1 file changed, 1 deletion(-)
diff --git a/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
b/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
index c3712d29131..8d181b9a196 100644
--- a/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
+++ b/solr/core/src/java/org/apache/solr/cli/HealthcheckTool.java
@@ -176,7 +176,6 @@ public class HealthcheckTool extends ToolBase {
solrClient.request(
new GenericSolrRequest(
SolrRequest.METHOD.GET,
CommonParams.SYSTEM_INFO_PATH));
- System.out.println("did this work?");
uptime = SolrCLI.uptime((Long) systemInfo.findRecursive("jvm",
"jmx", "upTimeMS"));
String usedMemory = (String) systemInfo.findRecursive("jvm",
"memory", "used");
String totalMemory = (String) systemInfo.findRecursive("jvm",
"memory", "total");