Skip to content

Commit 2116d7d

Browse files
sankarpnrjeberhard
authored andcommitted
add -g option for curl command
1 parent 0b67c73 commit 2116d7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

integration-tests/src/test/java/oracle/weblogic/kubernetes/ItMiiDomain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ void testCreateMiiDomain() {
298298
resourcePath,
299299
adminServerPodName);
300300
} else {
301-
String curlCmd = "curl -sk --show-error --noproxy '*' "
301+
String curlCmd = "curl -skg --show-error --noproxy '*' "
302302
+ " https://" + hostAndPort
303303
+ "/console/login/LoginForm.jsp --write-out %{http_code} -o /dev/null";
304304
logger.info("Executing default-admin nodeport curl command {0}", curlCmd);

integration-tests/src/test/java/oracle/weblogic/kubernetes/utils/CommonMiiTestUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ public static DomainResource createDomainResourceWithLogHome(
811811
.runtimeEncryptionSecret(encryptionSecretName)
812812
.onlineUpdate(new OnlineUpdate()
813813
.enabled(onlineUpdateEnabled)))
814-
.introspectorJobActiveDeadlineSeconds(300L));
814+
.introspectorJobActiveDeadlineSeconds(600L));
815815

816816
if (setDataHome) {
817817
domainSpec.dataHome(uniquePath + "/data");

0 commit comments

Comments
 (0)