You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@kafka.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2020/03/17 09:00:23 UTC

[jira] [Commented] (KAFKA-6941) when passing port = 0 to worker, the advertisedPort still is 0 rather than a random port

    [ https://issues.apache.org/jira/browse/KAFKA-6941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17060735#comment-17060735 ] 

ASF GitHub Bot commented on KAFKA-6941:
---------------------------------------

chia7712 commented on pull request #5076: KAFKA-6941 when passing port = 0 to worker, the advertisedPort still …
URL: https://github.com/apache/kafka/pull/5076
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


> when passing port = 0 to worker, the advertisedPort still is 0 rather than a random port
> ----------------------------------------------------------------------------------------
>
>                 Key: KAFKA-6941
>                 URL: https://issues.apache.org/jira/browse/KAFKA-6941
>             Project: Kafka
>          Issue Type: Bug
>            Reporter: Chia-Ping Tsai
>            Assignee: Chia-Ping Tsai
>            Priority: Major
>
> {code:java}
> public URI advertisedUrl() {
>     UriBuilder builder = UriBuilder.fromUri(jettyServer.getURI());
>     Integer advertisedPort = config.getInt(WorkerConfig.REST_ADVERTISED_PORT_CONFIG);
>     if (advertisedPort != null)
>         builder.port(advertisedPort);
>     else if (serverConnector != null)
>         builder.port(serverConnector.getPort()); // should call getLocalPort() instead
>     log.info("Advertised URI: {}", builder.build());
>     return builder.build();
> }{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)