Skip to content

Commit

Permalink
fix: bookie http endpoint info always return 0.0.0.0 (#4325)
Browse files Browse the repository at this point in the history
(cherry picked from commit fe5bbfe)
  • Loading branch information
nicoloboschi authored and hezhangjian committed May 25, 2024
1 parent e67685b commit 061a73d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public void publishInfo(ComponentInfoPublisher componentInfoPublisher) {
if (conf.getServerConf().isHttpServerEnabled()) {
EndpointInfo endpoint = new EndpointInfo("httpserver",
conf.getServerConf().getHttpServerPort(),
"0.0.0.0",
conf.getServerConf().getHttpServerHost(),
"http", null, null);
componentInfoPublisher.publishEndpoint(endpoint);
}
Expand Down

0 comments on commit 061a73d

Please sign in to comment.