This is an automated email from the ASF dual-hosted git repository. mpochatkin pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/main by this push: new 2a9b8b6117 IGNITE-22596 Enable ItThinClientComputeTest.testExecuteMapReduceExceptionPropagation (#4217) 2a9b8b6117 is described below commit 2a9b8b6117be988773e1d1b62375793a8b061e6f Author: Vadim Pakhnushev <8614891+valep...@users.noreply.github.com> AuthorDate: Tue Aug 13 20:21:24 2024 +0300 IGNITE-22596 Enable ItThinClientComputeTest.testExecuteMapReduceExceptionPropagation (#4217) --- .../ignite/internal/runner/app/client/ItThinClientComputeTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientComputeTest.java b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientComputeTest.java index ca71ac8202..d152c7aeaa 100644 --- a/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientComputeTest.java +++ b/modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/client/ItThinClientComputeTest.java @@ -93,7 +93,6 @@ import org.apache.ignite.table.mapper.Mapper; import org.hamcrest.Matcher; import org.hamcrest.Matchers; import org.jetbrains.annotations.Nullable; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.CsvSource; @@ -749,7 +748,6 @@ public class ItThinClientComputeTest extends ItAbstractThinClientTest { @ParameterizedTest @ValueSource(classes = {MapReduceExceptionOnSplitTask.class, MapReduceExceptionOnReduceTask.class}) - @Disabled("https://issues.apache.org/jira/browse/IGNITE-22596") <I, M, T> void testExecuteMapReduceExceptionPropagation(Class<? extends MapReduceTask<I, M, T, String>> taskClass) { IgniteCompute igniteCompute = client().compute(); TaskDescriptor<I, String> taskDescriptor = TaskDescriptor.builder(taskClass).build();