FewJuho commented on code in PR #11855:
URL: https://github.com/apache/ignite/pull/11855#discussion_r2000823401
##########
modules/core/src/main/java/org/apache/ignite/internal/client/thin/ReliableChannel.java:
##########
@@ -918,8 +919,22 @@ private <T> T applyOnNodeChannelWithFallback(UUID
tryNodeId, Function<ClientChan
try {
channel = hld.getOrCreateChannel();
+ try {
+ return function.apply(channel);
+ }
+ catch (ClientConnectionException e) {
+ if (partitionAwarenessEnabled) {
Review Comment:
Should we retry the connection in case of partitionAwarenessEnabled?
In the applyOnDefaultChannel reference method we take care of
partitionAwarenessEnabled=true
--
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]