This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 2c8056467 RATIS-2422.
TestNettyRpcProxy.testOfferRollbackOnAlreadyClosed fails with `Host is null`
(#1364)
2c8056467 is described below
commit 2c80564672a1aa548afa79ef45247c2a8d688ba3
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Fri Mar 6 18:11:25 2026 +0100
RATIS-2422. TestNettyRpcProxy.testOfferRollbackOnAlreadyClosed fails with
`Host is null` (#1364)
---
ratis-test/src/test/java/org/apache/ratis/netty/TestNettyRpcProxy.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ratis-test/src/test/java/org/apache/ratis/netty/TestNettyRpcProxy.java
b/ratis-test/src/test/java/org/apache/ratis/netty/TestNettyRpcProxy.java
index 75d471061..2507220a8 100644
--- a/ratis-test/src/test/java/org/apache/ratis/netty/TestNettyRpcProxy.java
+++ b/ratis-test/src/test/java/org/apache/ratis/netty/TestNettyRpcProxy.java
@@ -69,7 +69,7 @@ public class TestNettyRpcProxy extends BaseTest {
});
}
})
- .bind(0)
+ .bind("localhost", 0)
.sync();
serverChannel = bindFuture.channel();