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 8e19a6a30 Add printout read data for further debug
8e19a6a30 is described below
commit 8e19a6a300e843fd5b505da00064a8daa281ecd6
Author: Junkai Xue <[email protected]>
AuthorDate: Tue Jul 30 12:35:35 2024 -0700
Add printout read data for further debug
---
.../src/test/java/org/apache/helix/util/TestStatusUpdateUtil.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/helix-core/src/test/java/org/apache/helix/util/TestStatusUpdateUtil.java
b/helix-core/src/test/java/org/apache/helix/util/TestStatusUpdateUtil.java
index fbdc3642b..84f439721 100644
--- a/helix-core/src/test/java/org/apache/helix/util/TestStatusUpdateUtil.java
+++ b/helix-core/src/test/java/org/apache/helix/util/TestStatusUpdateUtil.java
@@ -130,7 +130,9 @@ public class TestStatusUpdateUtil extends ZkTestBase {
"TestDB_0");
try {
ZNRecord error = _gZkClient.readData(errPath);
- Assert.fail("not expecting being able to send error logs to ZK by
default.");
+ Assert.fail(String.format(
+ "not expecting being able to send error logs to ZK by default. Read
data %s",
+ error.toString()));
} catch (ZkException zke) {
// expected
}