Skip to content

Commit bc6f306

Browse files
committed
Exclude flaky errors from error log checks
1 parent a3e9bda commit bc6f306

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

dd-smoke-tests/src/main/groovy/datadog/smoketest/ProcessManager.groovy

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,21 @@ abstract class ProcessManager extends Specification {
255255
return false
256256
}
257257

258+
// FIXME: Flaky on Spring Boot, e.g. IastSpringBootSmokeTest :dd-smoke-tests:spring-boot-2.6-webmvc:test semeru8
259+
if (line.contains("I/O reactor terminated abnormally")) {
260+
return false
261+
}
262+
263+
// FIXME: Flaky profiler exception. See PROF-11072.
264+
if (line.contains("ERROR com.datadog.profiling.controller.ProfilingSystem - Fatal exception during profiling startup")) {
265+
return false
266+
}
267+
268+
// FIXME: Observed in semeru8 datadog.smoketest.WildflySmokeTest
269+
if (line.contains("ERROR datadog.trace.agent.jmxfetch.JMXFetch - jmx collector exited with result: 0")) {
270+
return false
271+
}
272+
258273
return line.contains("ERROR") || line.contains("ASSERTION FAILED")
259274
|| line.contains("Failed to handle exception in instrumentation")
260275
}

0 commit comments

Comments
 (0)