Skip to content

Commit

Permalink
Trim hostname string
Browse files Browse the repository at this point in the history
Resolves ZSTAC-2567

Signed-off-by: AlanJager <[email protected]>
  • Loading branch information
AlanJager committed Mar 12, 2018
1 parent 2cfbbfd commit 03e8d82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ void init() {
if ("AUTO".equals(hostname)) {
hname = Platform.getManagementServerIp();
} else {
hname = hostname;
hname = hostname.trim();
}

String url;
Expand Down

0 comments on commit 03e8d82

Please sign in to comment.