CallbackHandler to use either java config property or class annotation to enable batch callback handling.
Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/cdc3b8d6 Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/cdc3b8d6 Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/cdc3b8d6 Branch: refs/heads/master Commit: cdc3b8d6009715564d60f6ae1e3b4064d95f4c27 Parents: 2dbd88f Author: Lei Xia <[email protected]> Authored: Fri Mar 2 14:20:14 2018 -0800 Committer: Lei Xia <[email protected]> Committed: Thu Mar 8 11:13:28 2018 -0800 ---------------------------------------------------------------------- .../src/test/java/org/apache/helix/TestListenerCallback.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/cdc3b8d6/helix-core/src/test/java/org/apache/helix/TestListenerCallback.java ---------------------------------------------------------------------- diff --git a/helix-core/src/test/java/org/apache/helix/TestListenerCallback.java b/helix-core/src/test/java/org/apache/helix/TestListenerCallback.java index e6249a5..460a777 100644 --- a/helix-core/src/test/java/org/apache/helix/TestListenerCallback.java +++ b/helix-core/src/test/java/org/apache/helix/TestListenerCallback.java @@ -45,7 +45,6 @@ public class TestListenerCallback extends ZkUnitTestBase { public void onConfigChange(List<HelixProperty> configs, NotificationContext context) { _configChanged = true; _configSize = configs.size(); - System.out.println("onConfigChange invoked: " + configs.size() + ", " + configs); } public void reset () { @@ -68,7 +67,6 @@ public class TestListenerCallback extends ZkUnitTestBase { NotificationContext context) { _instanceConfigChanged = true; _instanceConfigs = instanceConfigs; - System.out.println("onInstanceConfigChange invoked: " + instanceConfigs); } @Override @@ -76,7 +74,6 @@ public class TestListenerCallback extends ZkUnitTestBase { NotificationContext context) { _clusterConfigChanged = true; _clusterConfig = clusterConfig; - System.out.println("onClusterConfigChange invoked: " + clusterConfig); } @Override @@ -84,7 +81,6 @@ public class TestListenerCallback extends ZkUnitTestBase { NotificationContext context) { _resourceConfigChanged = true; _resourceConfigs = resourceConfigs; - System.out.println("onResourceConfigChange invoked: " + resourceConfigs); } public void reset () {
