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
final String hostName = store.getDefaultString(PreferenceConstants.P_HOST_ENDPOINT_STRING);
should be replaced with String hostName = store.getString(PreferenceConstants.P_HOST_ENDPOINT_STRING);
Please also rename the label "Host name:" to "URL to HAC:" or something that better express that it must be a URL.
The text was updated successfully, but these errors were encountered:
The default hostname string "http://localhost:9001/hac" is always used for validation action and not the configured url in preference page.
In
ValidateImpexAction
final String hostName = store.getDefaultString(PreferenceConstants.P_HOST_ENDPOINT_STRING);
should be replaced with
String hostName = store.getString(PreferenceConstants.P_HOST_ENDPOINT_STRING);
Please also rename the label "Host name:" to "URL to HAC:" or something that better express that it must be a URL.
The text was updated successfully, but these errors were encountered: