This is an automated email from the ASF dual-hosted git repository. mpochatkin pushed a commit to branch IGNITE-27471 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit b3d7793408839b198f3bb3a97b6e1e6980f59085 Author: Pochatkin Mikhail <[email protected]> AuthorDate: Wed Jan 14 17:11:59 2026 +0300 Try to fix docker test --- buildscripts/java-junit5.gradle | 2 +- .../java/org/apache/ignite/tests/docker/ItDockerConfigTest.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/buildscripts/java-junit5.gradle b/buildscripts/java-junit5.gradle index 5f2d2cf6985..4b0f765118b 100644 --- a/buildscripts/java-junit5.gradle +++ b/buildscripts/java-junit5.gradle @@ -24,7 +24,7 @@ test { // Define default test timeouts to avoid everhanging tests. systemProperty 'junit.jupiter.execution.timeout.testable.method.default', '10m' - systemProperty 'junit.jupiter.execution.timeout.lifecycle.method.default', '60s' + systemProperty 'junit.jupiter.execution.timeout.lifecycle.method.default', '120s' // Enable auto-detection of JUnit 5 extensions to automatically apply DumpThreadsOnTimeout extension. systemProperty 'junit.jupiter.extensions.autodetection.enabled', true diff --git a/packaging/test/src/integrationTest/java/org/apache/ignite/tests/docker/ItDockerConfigTest.java b/packaging/test/src/integrationTest/java/org/apache/ignite/tests/docker/ItDockerConfigTest.java index 25def31f398..d476bafb60c 100644 --- a/packaging/test/src/integrationTest/java/org/apache/ignite/tests/docker/ItDockerConfigTest.java +++ b/packaging/test/src/integrationTest/java/org/apache/ignite/tests/docker/ItDockerConfigTest.java @@ -41,7 +41,6 @@ import org.testcontainers.utility.MountableFile; /** * Basic tests for Docker configuration. */ -@Disabled("https://issues.apache.org/jira/browse/IGNITE-27471") public class ItDockerConfigTest { private static final String DOCKER_IMAGE = "apacheignite/ignite:latest"; private static final int CLUSTER_SIZE = 3;
