Skip to content

Commit 73dba1b

Browse files
authored
[ST] Disable flaky assertNoCoErrorsLogged (#9797)
Signed-off-by: jkalinic <[email protected]>
1 parent 9bb6b31 commit 73dba1b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

systemtest/src/test/java/io/strimzi/systemtest/AbstractST.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,9 @@ void tearDownTestCase(ExtensionContext extensionContext) throws Exception {
170170
// does not proceed with the next method (i.e., afterEachMustExecute()). This ensures that if such problem happen
171171
// it will always execute the second method.
172172
try {
173-
assertNoCoErrorsLogged(clusterOperator.getDeploymentNamespace(), storageMap.get(extensionContext).getTestExecutionTimeInSeconds());
173+
// This method needs to be disabled for the moment, as it brings flakiness and is unstable due to regexes and current matcher checks.
174+
// Needs to be reworked on what errors to ignore. Better error logging should be added.
175+
//assertNoCoErrorsLogged(clusterOperator.getDeploymentNamespace(), storageMap.get(extensionContext).getTestExecutionTimeInSeconds());
174176
} finally {
175177
afterEachMayOverride();
176178
afterEachMustExecute();

0 commit comments

Comments
 (0)