This is an automated email from the ASF dual-hosted git repository. imaxon pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/asterixdb.git
commit 19f8123ba14d320a1ca618ae8a43158a07bf84d0 Author: Michael Blow <[email protected]> AuthorDate: Tue Feb 24 16:04:32 2026 -0500 [NO ISSUE][HYR][NET] Re-resolve cluster address on initial connect retry (cherry picked from commit 996a015003) Ext-ref: MB-70678 Change-Id: I9b8cebcfb6cba48cba039478013a21b4aa7b5ec2 Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20937 Integration-Tests: Jenkins <[email protected]> Reviewed-by: Michael Blow <[email protected]> Tested-by: Michael Blow <[email protected]> --- .../src/main/java/org/apache/hyracks/ipc/impl/IPCConnectionManager.java | 1 + 1 file changed, 1 insertion(+) diff --git a/hyracks-fullstack/hyracks/hyracks-ipc/src/main/java/org/apache/hyracks/ipc/impl/IPCConnectionManager.java b/hyracks-fullstack/hyracks/hyracks-ipc/src/main/java/org/apache/hyracks/ipc/impl/IPCConnectionManager.java index 5834f26d66..cdb91c3c71 100644 --- a/hyracks-fullstack/hyracks/hyracks-ipc/src/main/java/org/apache/hyracks/ipc/impl/IPCConnectionManager.java +++ b/hyracks-fullstack/hyracks/hyracks-ipc/src/main/java/org/apache/hyracks/ipc/impl/IPCConnectionManager.java @@ -140,6 +140,7 @@ public class IPCConnectionManager { } Thread.sleep(delay); delay = Math.min(MAX_RETRY_DELAY_MILLIS, (int) (delay * 1.5)); + remoteAddress = NetworkUtil.refresh(remoteAddress); } else { throw new IOException("Connection failed to " + remoteAddress); }
