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
When the URL is resolved, the label is left off and the basePath is only added when it is empty. The issue is in the MuleCloudConfigAnypointConnection class, as its logic is inverted on the basePath and leaves the label off altogether.
Present workaround is to concatenate the label onto the profiles field, with dummy text in the label field.
To Reproduce
Steps to reproduce the behavior:
Configure a global Spring Cloud Config connector with application name, profile, label, and base path.
Set a breakpoint on a "Get Properties" component
See that the connection.url property has no label appended and is missing the base path. When base path is not specified, an extra / is added after the base url.
Expected behavior
The URL resolves to baseServerURL + "/" + basePath + "/" + applicationName + "/" + profiles + "/" + label i.e. http://baseserver.com:8080/basePath/appName/profiles/label.
The text was updated successfully, but these errors were encountered:
When the URL is resolved, the label is left off and the basePath is only added when it is empty. The issue is in the MuleCloudConfigAnypointConnection class, as its logic is inverted on the basePath and leaves the label off altogether.
Present workaround is to concatenate the label onto the profiles field, with dummy text in the label field.
To Reproduce
Steps to reproduce the behavior:
/
is added after the base url.Expected behavior
The URL resolves to
baseServerURL + "/" + basePath + "/" + applicationName + "/" + profiles + "/" + label
i.e.http://baseserver.com:8080/basePath/appName/profiles/label
.The text was updated successfully, but these errors were encountered: