Skip to content

Commit 3d67522

Browse files
author
admin
committed
debug
1 parent ed75c47 commit 3d67522

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/test/java/net/continuumsecurity/Config.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ private String validateAndGetString(String value) {
131131
if (ret == null) throw new RuntimeException(value+" not defined in config.xml");
132132
return ret;
133133
}
134+
135+
private String[] validateAndGetStringArray(String value) {
136+
String[] ret = getXml().getStringArray(value);
137+
if (ret == null) throw new RuntimeException(value+" not defined in config.xml");
138+
return ret;
139+
}
134140

135141
public String getSSLyzePath() { return validateAndGetString("sslyze.path"); }
136142
public String getSSLyzeOption() { return validateAndGetString("sslyze.option"); }
@@ -195,7 +201,7 @@ public String getReportsDir() {
195201

196202
public String getNessusPassword() { return validateAndGetString("nessus.password");}
197203

198-
public String getNoProxyHosts() { return validateAndGetString("upstreamProxy.noProxyHosts");}
204+
public String getNoProxyHosts() { return String.join(",", validateAndGetStringArray("upstreamProxy.noProxyHosts"));}
199205

200206
public String getUpstreamProxyHost() { return validateAndGetString("upstreamProxy.host"); }
201207

0 commit comments

Comments
 (0)