Merge pull request #21 from normanmaurer/localaddress_fix
Correctly obtain localAddress after connect was complete
This commit is contained in:
commit
44f2cba67a
@ -371,6 +371,9 @@ abstract class AbstractIOUringChannel extends AbstractChannel implements UnixCha
|
||||
}
|
||||
active = true;
|
||||
|
||||
if (local == null) {
|
||||
local = socket.localAddress();
|
||||
}
|
||||
computeRemote();
|
||||
|
||||
// Register POLLRDHUP
|
||||
|
@ -19,8 +19,6 @@ import io.netty.bootstrap.Bootstrap;
|
||||
import io.netty.bootstrap.ServerBootstrap;
|
||||
import io.netty.testsuite.transport.TestsuitePermutation;
|
||||
import io.netty.testsuite.transport.socket.SocketConnectTest;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -29,12 +27,4 @@ public class IOUringSocketConnectTest extends SocketConnectTest {
|
||||
protected List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap, Bootstrap>> newFactories() {
|
||||
return IOUringSocketTestPermutation.INSTANCE.socket();
|
||||
}
|
||||
|
||||
@Ignore
|
||||
@Test
|
||||
@Override
|
||||
public void testLocalAddressAfterConnect() throws Throwable {
|
||||
super.testLocalAddressAfterConnect();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user