ygerzhedovich commented on code in PR #3264:
URL: https://github.com/apache/ignite-3/pull/3264#discussion_r1524756197


##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/ExchangeServiceImpl.java:
##########
@@ -176,6 +174,10 @@ private void onMessage(String nodeName, QueryBatchMessage 
msg) {
             } catch (Throwable e) {
                 inbox.onError(e);
 
+                if (e instanceof IgniteException) {
+                    return;
+                }
+
                 throw new IgniteInternalException(INTERNAL_ERR, "Unexpected 
exception", e);

Review Comment:
   it require to pass the error to fail handler in case it unexpected to us



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to