Skip to content

Commit

Permalink
Merge pull request #37 from data-integrations/PLUGIN-1520-fix-uri-bui…
Browse files Browse the repository at this point in the history
…lder

PLUGIN-1520 fix uri builder usage
  • Loading branch information
albertshau authored Feb 27, 2023
2 parents 8b16c19 + 2c20658 commit c053c48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public String getPath() {
if (port == -1 && protocol.equals(SFTP_PROTOCOL)) {
port = DEFAULT_SFTP_PORT;
}
return UriBuilder.fromUri(urlInfo.toUri()).port(port).userInfo(null).toString();
return UriBuilder.fromUri(urlInfo.toUri()).port(port).userInfo(null).build().toString();
}
return path;
}
Expand Down

0 comments on commit c053c48

Please sign in to comment.