Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,14 @@ void testIntrospectDomainScript() {
// verify when a domain resource has spec.introspectVersion configured,
// after a introspectVersion is modified, new server pods have the label
// "weblogic.introspectVersion" set as well.
verifyIntrospectVersionLabelInPod(replicaCount);
testUntil(
() -> {
assertDoesNotThrow(() -> verifyIntrospectVersionLabelInPod(replicaCount));
return true;
},
logger,
" Running verifyIntrospectVersionLabelInPod");


// use introspectDomain.sh to initiate introspection
logger.info("Initiate introspection with non numeric string with space");
Expand Down