We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01e3832 commit a589f52Copy full SHA for a589f52
netty/src/main/java/io/grpc/netty/NettyServer.java
@@ -261,7 +261,7 @@ public void operationComplete(ChannelFuture future) throws Exception {
261
// See #6850
262
future.awaitUninterruptibly();
263
if (!future.isSuccess()) {
264
- throw new IOException("Failed to bind", future.cause());
+ throw new IOException(String.format("Failed to bind to address %s", address), future.cause());
265
}
266
channel = future.channel();
267
channel.eventLoop().execute(new Runnable() {
0 commit comments