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

Commit 503c2b4

Browse files
Removed -E from curl test
1 parent f2d4360 commit 503c2b4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/com/mulesoft/tool/network/NetworkUtils.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ public static String curl(String url) throws IOException {
4646
//-i include protocol headers
4747
//-L follow redirects
4848
//-k insecure
49-
//-E cert status
50-
return execute(new ProcessBuilder("curl","-k", "-E", "-i","-L", url));
49+
return execute(new ProcessBuilder("curl","-k", "-i","-L", url));
5150
}
5251

5352
public static String testConnect(String host, String port) {

0 commit comments

Comments
 (0)