This is an automated email from the ASF dual-hosted git repository.
jxue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git
The following commit(s) were added to refs/heads/master by this push:
new 841beaee1 Fix ClusterManager Logger (#2810)
841beaee1 is described below
commit 841beaee1759e6b5daf50b35069e8293d8b3bd52
Author: Xiaxuan Gao <[email protected]>
AuthorDate: Tue Jun 18 13:04:27 2024 -0700
Fix ClusterManager Logger (#2810)
---
.../test/java/org/apache/helix/integration/manager/ClusterManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/helix-core/src/test/java/org/apache/helix/integration/manager/ClusterManager.java
b/helix-core/src/test/java/org/apache/helix/integration/manager/ClusterManager.java
index 81da1fdb5..861706409 100644
---
a/helix-core/src/test/java/org/apache/helix/integration/manager/ClusterManager.java
+++
b/helix-core/src/test/java/org/apache/helix/integration/manager/ClusterManager.java
@@ -33,7 +33,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ClusterManager extends ZKHelixManager implements Runnable,
ZkTestManager {
- private static Logger LOG =
LoggerFactory.getLogger(ClusterControllerManager.class);
+ private static Logger LOG = LoggerFactory.getLogger(ClusterManager.class);
private static final int DISCONNECT_WAIT_TIME_MS = 3000;
private static AtomicLong UID = new AtomicLong(10000);