Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,7 @@ public static Map<String, String> validate(@NotNull Map<String, String> params,

if (ENVIRONMENT_TYPE_CUSTOM.equals(params.get(ENVIRONMENT_NAME_PARAM))) {
final String serviceEndpoint = params.get(SERVICE_ENDPOINT_PARAM);
if (StringUtil.isEmptyOrSpaces(serviceEndpoint)) {
invalids.put(SERVICE_ENDPOINT_PARAM, SERVICE_ENDPOINT_LABEL + " must not be empty");
} else {
if (StringUtil.isNotEmpty(serviceEndpoint)) {
try {
new URL(serviceEndpoint);
} catch (MalformedURLException e) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<props:selectSectionPropertyContent value="" caption="<Default>" />
<props:selectSectionPropertyContent value="${environment_type_custom}" caption="Custom">
<tr>
<th><label for="${service_endpoint_param}">${service_endpoint_label}: <l:star/></label></th>
<th><label for="${service_endpoint_param}">${service_endpoint_label}: </label></th>
<td>
<props:textProperty name="${service_endpoint_param}" className="longField"/>
<span class="smallNote">Specify the URL for AWS service</span>
Expand Down