We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 148aef9 commit 035bfdfCopy full SHA for 035bfdf
dd-java-agent/testing/src/main/groovy/datadog/trace/agent/test/base/HttpServerTest.groovy
@@ -529,7 +529,7 @@ abstract class HttpServerTest<SERVER> extends WithHttpServer<SERVER> {
529
def "test success with #count requests"() {
530
setup:
531
def request = request(SUCCESS, method, body).build()
532
- List<Response> responses = (1..count).collect {
+ List<Response> responses = (1..count).parallelStream().collect {
533
return client.newCall(request).execute()
534
}
535
if (isDataStreamsEnabled()) {
0 commit comments