Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit a897e00

Browse files
committed
ProxyManager create method signature fix
1 parent 9bff41b commit a897e00

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

browserup-proxy-rest/src/main/java/com/browserup/bup/proxy/ProxyManager.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,10 @@ public void onRemoval(RemovalNotification<Integer, BrowserUpProxyServer> removal
133133
}
134134
}
135135

136+
public BrowserUpProxyServer create(String upstreamHttpProxy, String proxyUsername, String proxyPassword, Integer port, String bindAddr, String serverBindAddr, boolean useEcc, boolean trustAllServers) {
137+
return create(upstreamHttpProxy, false, proxyUsername, proxyPassword, port, bindAddr, serverBindAddr, useEcc, trustAllServers);
138+
}
139+
136140
public BrowserUpProxyServer create(String upstreamHttpProxy, boolean upstreamProxyHttps, String proxyUsername, String proxyPassword, Integer port, String bindAddr, String serverBindAddr, boolean useEcc, boolean trustAllServers) {
137141
LOG.debug("Instantiate ProxyServer...");
138142
BrowserUpProxyServer proxy = new BrowserUpProxyServer();

0 commit comments

Comments
 (0)