This is an automated email from the ASF dual-hosted git repository.
dsmiley 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 7b0208db9bb ZkTestServer: log.error -> log.warn for 'stat'
7b0208db9bb is described below
commit 7b0208db9bb3fdabc7c68eda6dd7c4df5be96960
Author: David Smiley <[email protected]>
AuthorDate: Thu Mar 12 22:10:24 2026 -0400
ZkTestServer: log.error -> log.warn for 'stat'
Wasn't error-worthy
---
solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
b/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
index 373a2c8eb4d..8be5bec00db 100644
--- a/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
+++ b/solr/test-framework/src/java/org/apache/solr/cloud/ZkTestServer.java
@@ -732,7 +732,7 @@ public class ZkTestServer {
if (!FourLetterCommands.isEnabled(stat)) {
final String original = System.getProperty(ZK_WHITELIST_PROPERTY);
try {
- log.error(
+ log.warn(
"ZkTestServer requires the 'stat' command, temporarily
manipulating your whitelist");
System.setProperty(ZK_WHITELIST_PROPERTY, "*");
FourLetterCommands.resetWhiteList();