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

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

commit dda15900c3031bf5e0966bd448ddb6313b367885
Author: Valentin Kulichenko <valentin.kuliche...@gmail.com>
AuthorDate: Thu Jun 24 14:10:22 2021 -0700

    IGNITE-14992 - Temporarily commenting out the warning to avoid excessive 
output
---
 .../java/org/apache/ignite/raft/server/impl/RaftServerImpl.java    | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/modules/raft/src/main/java/org/apache/ignite/raft/server/impl/RaftServerImpl.java
 
b/modules/raft/src/main/java/org/apache/ignite/raft/server/impl/RaftServerImpl.java
index 004c819..ff81d90 100644
--- 
a/modules/raft/src/main/java/org/apache/ignite/raft/server/impl/RaftServerImpl.java
+++ 
b/modules/raft/src/main/java/org/apache/ignite/raft/server/impl/RaftServerImpl.java
@@ -125,9 +125,10 @@ public class RaftServerImpl implements RaftServer {
                     handleActionRequest(sender, req0, correlationId, 
writeQueue, lsnr);
                 }
             }
-            else {
-                LOG.warn("Unsupported message class " + 
message.getClass().getName());
-            }
+            // TODO: IGNITE-14992 - Temporarily commenting out for alpha2
+            // else {
+            //     LOG.warn("Unsupported message class " + 
message.getClass().getName());
+            // }
         });
 
         readWorker = new Thread(() -> processQueue(readQueue, 
RaftGroupCommandListener::onRead), "read-cmd-worker#" + id);

Reply via email to