You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
while trying to disable inbound traffic from maven plugin, we see that it enables by default and set the first domain for the cluster.
enabling in the UI is possible but not from maven plugin, we tried as well with AMC application manager with same result when we modify the json to have a null value, example: "inbound": {"publicUrl":null}
when checking the code of the plugin the code for RequestBuilder.java specifies the following.
while trying to disable inbound traffic from maven plugin, we see that it enables by default and set the first domain for the cluster.
enabling in the UI is possible but not from maven plugin, we tried as well with AMC application manager with same result when we modify the json to have a null value, example: "inbound": {"publicUrl":null}
when checking the code of the plugin the code for RequestBuilder.java specifies the following.
private String resolveUrl(RuntimeFabricDeploymentSettings deploymentSettings, String targetId) {
JsonArray domains = client.getDomainInfo(targetId);
if (deploymentSettings.getPublicUrl() == null && domains.size() > 0) {
String domain = domains.get(0).getAsString();
return domain.replace(DOMAIN_WILDCARD, deployment.getApplicationName());
} else {
return deploymentSettings.getPublicUrl();
}
}
which explain the behavior explained above.
The text was updated successfully, but these errors were encountered: