Skip to content

Commit 0b14250

Browse files
committed
Increase timeout to 60 seconds.
1 parent 29086fd commit 0b14250

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

java-components/domain-proxy/common/src/main/java/com/redhat/hacbs/domainproxy/common/CommonIOUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public final class CommonIOUtil {
1616
private static final Logger LOG = Logger.getLogger(CommonIOUtil.class);
1717

1818
public static final String LOCALHOST = "localhost";
19-
public static final int TIMEOUT_MS = 30000;
19+
public static final int TIMEOUT_MS = 60000;
2020

2121
private CommonIOUtil() {
2222
}

java-components/domain-proxy/server/src/test/java/com/redhat/hacbs/domainproxy/server/ExternalProxyVerticleTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,6 @@ public void testNotWhitelistedHTTPS() {
110110
.then()
111111
.statusCode(HttpResponseStatus.FORBIDDEN.code());
112112
}
113+
114+
// TODO Add HTTP Head tests for HTTP and HTTPS
113115
}

0 commit comments

Comments
 (0)