[ https://issues.apache.org/jira/browse/KAFKA-6941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16490114#comment-16490114 ]
ASF GitHub Bot commented on KAFKA-6941: --------------------------------------- chia7712 opened a new pull request #5076: KAFKA-6941 when passing port = 0 to worker, the advertisedPort still … URL: https://github.com/apache/kafka/pull/5076 ### Committer Checklist (excluded from commit message) - [ ] Verify design and implementation - [ ] Verify test coverage and CI build status - [ ] Verify documentation (including upgrade notes) ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@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 (v7.6.3#76005)