You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Ariel Weisberg (JIRA)" <ji...@apache.org> on 2018/06/27 22:14:00 UTC

[jira] [Updated] (CASSANDRA-14544) Report why native_transport_port fails to bind

     [ https://issues.apache.org/jira/browse/CASSANDRA-14544?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ariel Weisberg updated CASSANDRA-14544:
---------------------------------------
    Summary: Report why native_transport_port fails to bind  (was: Server.java swallows the reason why binding failed)

> Report why native_transport_port fails to bind
> ----------------------------------------------
>
>                 Key: CASSANDRA-14544
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-14544
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: James Roper
>            Assignee: James Roper
>            Priority: Major
>             Fix For: 4.0
>
>
> On line 164 of {{org/apache/cassandra/transport/Server.java}}, the cause of a failure to bind to the server port is swallowed:
> [https://github.com/apache/cassandra/blob/06209037ea56b5a2a49615a99f1542d6ea1b2947/src/java/org/apache/cassandra/transport/Server.java#L163-L164]
> {code:java}
>         if (!bindFuture.awaitUninterruptibly().isSuccess())
>             throw new IllegalStateException(String.format("Failed to bind port %d on %s.", socket.getPort(), socket.getAddress().getHostAddress()));
> {code}
> So we're told that the bind failed, but we're left guessing as to why. The cause of the bind failure should be passed to the {{IllegalStateException}}, so that we can then proceed with debugging, like so:
> {code:java}
>         if (!bindFuture.awaitUninterruptibly().isSuccess())
>             throw new IllegalStateException(String.format("Failed to bind port %d on %s.", socket.getPort(), socket.getAddress().getHostAddress()),
>                 bindFuture.cause());
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org