This is an automated email from the ASF dual-hosted git repository.

sk0x50 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/main by this push:
     new df288701414 IGNITE-28443 Add additional logs to 
ItNodeTest#testSmallestBufferSize due to test failure (#7925)
df288701414 is described below

commit df28870141425a0c756b4cc746f73bb02850a24e
Author: Denis Chudov <[email protected]>
AuthorDate: Fri Apr 3 15:49:26 2026 +0300

    IGNITE-28443 Add additional logs to ItNodeTest#testSmallestBufferSize due 
to test failure (#7925)
---
 .../java/org/apache/ignite/raft/jraft/core/ItNodeTest.java          | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git 
a/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ItNodeTest.java
 
b/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ItNodeTest.java
index a6b06c19dba..2e5712edefe 100644
--- 
a/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ItNodeTest.java
+++ 
b/modules/raft/src/integrationTest/java/org/apache/ignite/raft/jraft/core/ItNodeTest.java
@@ -371,7 +371,8 @@ public class ItNodeTest extends BaseIgniteAbstractTest {
         AtomicInteger c = new AtomicInteger();
 
         Task task1 = new Task(ByteBuffer.wrap(("Test task").getBytes(UTF_8)), 
new JoinableClosure(status -> {
-            log.info("First task is started.");
+            log.info("First task is started [statusOk={}, statusError={}, 
status={}].", status.isOk(), status.getRaftError().name(),
+                    status);
 
             if (!status.isOk()) {
                 assertTrue(
@@ -381,7 +382,8 @@ public class ItNodeTest extends BaseIgniteAbstractTest {
         }));
 
         Task task2 = new Task(ByteBuffer.wrap(("Test task").getBytes(UTF_8)), 
new JoinableClosure(status -> {
-            log.info("Second task is started.");
+            log.info("Second task is started [statusOk={}, statusError={}, 
status={}].", status.isOk(), status.getRaftError().name(),
+                    status);
 
             if (!status.isOk()) {
                 assertTrue(

Reply via email to