Github user aledsage commented on a diff in the pull request:
https://github.com/apache/brooklyn-library/pull/66#discussion_r82837626
--- Diff:
software/webapp/src/main/java/org/apache/brooklyn/entity/proxy/AbstractControllerImpl.java
---
@@ -317,6 +331,8 @@ protected void computePortsAndUrls() {
sensors().set(PROTOCOL, inferProtocol());
sensors().set(MAIN_URI, URI.create(inferUrl()));
+ sensors().set(MAIN_URI_MAPPED_SUBNET, URI.create("http://" +
sensors().get(SUBNET_ADDRESS) + ":" + sensors().get(PROXY_HTTP_PORT) + "/"));
--- End diff --
Don't hard-code "http" - need to call `inferProtocol()`.
Also want to guard against `SUBNET_ADDRESS` sensor not being set (e.g. for
`GeoscalingDnsService`). No strong feelings whether we'd set the sensor to
null, or would use `domain` instead if that is set.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---