Skip to content

Commit 6aac9e2

Browse files
committed
Remove default proxyAllowHttpJobTypes value to algin with proxy host
1 parent 8c8b384 commit 6aac9e2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/org/commonjava/util/jhttpc/model/SiteConfig.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ public final class SiteConfig
4040

4141
public static final int DEFAULT_CONNECTION_POOL_TIMEOUT_SECONDS = 60;
4242

43-
public static final String DEFAULT_PROXY_ALLOW_HTTP_JOB_TYPES = "download,existence,listing";
44-
4543
private final String id;
4644

4745
private final String uri;
@@ -176,7 +174,7 @@ public String getProxyUser()
176174

177175
public String getProxyAllowHttpJobTypes()
178176
{
179-
return proxyAllowHttpJobTypes == null ? DEFAULT_PROXY_ALLOW_HTTP_JOB_TYPES : proxyAllowHttpJobTypes;
177+
return proxyAllowHttpJobTypes;
180178
}
181179

182180
public String getKeyCertPem()

0 commit comments

Comments
 (0)