Skip to content

Commit

Permalink
revert proxy type change
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Jul 30, 2023
1 parent 886393d commit 8fb8d43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class FtpsWithProxyStageTest extends BaseFtpSupport implements CommonFtpS

private final Integer PROXYPORT = 3128;
private final Proxy PROXY =
new Proxy(Proxy.Type.DIRECT, new InetSocketAddress(HOSTNAME, PROXYPORT));
new Proxy(Proxy.Type.HTTP, new InetSocketAddress(HOSTNAME, PROXYPORT));

@Test
public void listFiles() throws Exception {
Expand Down

0 comments on commit 8fb8d43

Please sign in to comment.