Skip to content

Commit

Permalink
remove a lot of wait logs and fix testing farm trigger
Browse files Browse the repository at this point in the history
Signed-off-by: see-quick <[email protected]>
  • Loading branch information
see-quick committed May 2, 2024
1 parent a2653a7 commit c85d885
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ public void deleteResourcesOfTypeWithoutWait(final String resourceKind) {
}

public static <T extends CustomResource<? extends Spec, ? extends Status>> boolean waitForResourceStatus(MixedOperation<T, ?, ?> operation, String kind, String namespace, String name, Enum<?> statusType, ConditionStatus conditionStatus, long resourceTimeoutMs) {
LOGGER.info("Waiting for {}: {}/{} will have desired state: {}", kind, namespace, name, statusType);
LOGGER.log(ResourceManager.getInstance().determineLogLevel(), "Waiting for {}: {}/{} will have desired state: {}", kind, namespace, name, statusType);

TestUtils.waitFor(String.format("%s: %s#%s will have desired state: %s", kind, namespace, name, statusType),
TestConstants.POLL_INTERVAL_FOR_RESOURCE_READINESS, resourceTimeoutMs,
Expand All @@ -496,7 +496,7 @@ public void deleteResourcesOfTypeWithoutWait(final String resourceKind) {
.withName(name)
.get()));

LOGGER.info("{}: {}/{} is in desired state: {}", kind, namespace, name, statusType);
LOGGER.log(ResourceManager.getInstance().determineLogLevel(), "{}: {}/{} is in desired state: {}", kind, namespace, name, statusType);
return true;
}

Expand Down
2 changes: 1 addition & 1 deletion systemtest/tmt/tests/strimzi/main.fmf
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ adjust:
environment+:
TEST_PROFILE: performance-capacity
PARALLELISM_ENABLED: false
TESTS: TopicOperatorPerformanceTest#testCapacity
TESTS: TopicOperatorPerformance#testCapacity

0 comments on commit c85d885

Please sign in to comment.