mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-09-23 14:15:47 +00:00
Merge pull request #31 from nlevitt/proxy-port-configurable
make http proxy port configurable in cxml, avoiding this: org.springfram...
This commit is contained in:
@@ -318,8 +318,8 @@ public class FetchHTTP extends Processor implements Lifecycle {
|
||||
/**
|
||||
* Proxy port (set only if needed).
|
||||
*/
|
||||
public void setHttpProxyPort(int port) {
|
||||
kp.put("httpProxyPort",port);
|
||||
public void setHttpProxyPort(Integer port) {
|
||||
kp.put("httpProxyPort", port);
|
||||
}
|
||||
|
||||
public String getHttpProxyUser() {
|
||||
|
||||
Reference in New Issue
Block a user