Skip to content

Commit

Permalink
Fixed ip6address in port forward config
Browse files Browse the repository at this point in the history
Signed-off-by: pierantoniomerlino <[email protected]>
  • Loading branch information
pierantoniomerlino committed Oct 5, 2023
1 parent 1d8e283 commit 4b85419
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ private String formPortForwardConfigPropValue() {
}
sb.append(',');
if (portForwardConfig.getIPAddress() != null) {
sb.append(portForwardConfig.getIPAddress());
sb.append(portForwardConfig.getIPAddress().getHostAddress());
}
sb.append(',');
if (portForwardConfig.getProtocol() != null) {
Expand Down

0 comments on commit 4b85419

Please sign in to comment.