Skip to content

Commit 8c1f7d8

Browse files
Merge pull request #6949 from DataDog/bbujon/ci-flaky-integration-grizzly-http
Mark Grizzly HTTP integration test as flaky
2 parents 2a8627d + d14cbd3 commit 8c1f7d8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dd-java-agent/instrumentation/grizzly-http-2.3.20/src/test/groovy/GrizzlyTest.groovy

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import datadog.trace.agent.test.base.HttpServerTest
22
import datadog.trace.instrumentation.grizzlyhttp232.GrizzlyDecorator
3+
import datadog.trace.test.util.Flaky
34
import org.glassfish.grizzly.http.server.HttpServer
45

56
class GrizzlyTest extends HttpServerTest<HttpServer> {
@@ -53,9 +54,10 @@ class GrizzlyTest extends HttpServerTest<HttpServer> {
5354
true
5455
}
5556

57+
@Flaky("https://github.com/DataDog/dd-trace-java/issues/6933")
5658
@Override
5759
boolean testBlocking() {
58-
true
60+
"false" != System.getProperty("run.flaky.tests") // Set when using -PskipFlakyTests gradle parameter
5961
}
6062

6163
//@Ignore("https://github.com/DataDog/dd-trace-java/pull/5213")

0 commit comments

Comments
 (0)