zeroflag commented on code in PR #842: URL: https://github.com/apache/knox/pull/842#discussion_r1502284036
########## gateway-service-metadata/src/main/java/org/apache/knox/gateway/service/metadata/KnoxMetadataResource.java: ########## @@ -101,6 +103,7 @@ public GeneralProxyInformation getGeneralProxyInformation() { final ServerInfoService serviceInfoService = gatewayServices.getService(ServiceType.SERVER_INFO_SERVICE); final String versionInfo = serviceInfoService.getBuildVersion() + " (hash=" + serviceInfoService.getBuildHash() + ")"; proxyInfo.setVersion(versionInfo); + proxyInfo.setHostname(Hostname.getHostname()); Review Comment: Wouldn't a simple `InetAddress.getLocalHost().getHostName()` work? Do we know how is this library implemented? -- 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. To unsubscribe, e-mail: dev-unsubscr...@knox.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org