This is an automated email from the ASF dual-hosted git repository.
tflobbe pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new 98f487b7b50 SOLR-16831: Fix precommit
98f487b7b50 is described below
commit 98f487b7b50b54de44351de5fcd04e66a92f51a7
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");