Github user kkhatua commented on a diff in the pull request:
https://github.com/apache/drill/pull/1203#discussion_r180553686
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/service/ServiceEngine.java
---
@@ -102,6 +105,7 @@ public DrillbitEndpoint start() throws
DrillbitStartupException, UnknownHostExce
DrillbitEndpoint partialEndpoint = DrillbitEndpoint.newBuilder()
.setAddress(hostName)
.setUserPort(userPort)
+ .setHttpPort(httpPort)
--- End diff --
Thanks to @dvjyothsna , referred to an outdated PR #1042 for the endpoint
registration after the web-server starts up.
---