Skip to content

Commit 28bb458

Browse files
Increased limits to prevent not needed dumps on timeout. (#9578)
1 parent fc0582d commit 28bb458

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

dd-smoke-tests/gradle/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,5 @@ test {
2424
// propagate proxy URL to tests, to then propagate it to nested Gradle builds
2525
environment "MAVEN_REPOSITORY_PROXY", project.property("mavenRepositoryProxy")
2626
}
27-
28-
// Overriding the default timeout as Gradle smoke tests might run for a longer duration.
29-
timeout = Duration.of(20, ChronoUnit.MINUTES)
3027
}
3128

gradle/configure_tests.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ tasks.withType(Test).configureEach {
7575
exclude("**/*ForkedTest*")
7676
}
7777

78-
// Set test timeout for 15 minutes. Default job timeout is 1h (configured on CI level).
79-
timeout = Duration.of(15, ChronoUnit.MINUTES)
78+
// Set test timeout for 20 minutes. Default job timeout is 1h (configured on CI level).
79+
timeout = Duration.of(20, ChronoUnit.MINUTES)
8080

8181
check.dependsOn(it)
8282
}

0 commit comments

Comments
 (0)