This is an automated email from the ASF dual-hosted git repository.
andor pushed a commit to branch branch-3.9
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/branch-3.9 by this push:
new b4a487181 Fix unit test - logredactor
b4a487181 is described below
commit b4a4871813adb8ddc8b75252838f56c8acab5009
Author: Andor Molnar <[email protected]>
AuthorDate: Wed Jan 21 14:53:38 2026 -0600
Fix unit test - logredactor
---
.../src/main/java/org/apache/zookeeper/common/ZKConfig.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/zookeeper-server/src/main/java/org/apache/zookeeper/common/ZKConfig.java
b/zookeeper-server/src/main/java/org/apache/zookeeper/common/ZKConfig.java
index c944b9bbd..4a3805d26 100644
--- a/zookeeper-server/src/main/java/org/apache/zookeeper/common/ZKConfig.java
+++ b/zookeeper-server/src/main/java/org/apache/zookeeper/common/ZKConfig.java
@@ -98,7 +98,7 @@ public ZKConfig(File configFile) throws
QuorumPeerConfig.ConfigException {
for (Entry<String, String> entry : properties.entrySet()) {
p.put(entry.getKey(), logRedactor(entry.getKey(),
entry.getValue()));
}
- LOG.info("ZK Config {}", this.properties);
+ LOG.info("ZK Config {}", p);
}
/**