File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
dd-smoke-tests/src/main/groovy/datadog/smoketest Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments