This is an automated email from the ASF dual-hosted git repository.
apolovtsev 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 c37bdf2edc5 IGNITE-27480 Flaky
testWriteIntentResolutionAfterTableAlreadyDestroyed (#7331)
c37bdf2edc5 is described below
commit c37bdf2edc540a7c72ef32827297d8e76d1c787e
Author: Phillippko <[email protected]>
AuthorDate: Mon Jan 5 18:27:52 2026 +0700
IGNITE-27480 Flaky testWriteIntentResolutionAfterTableAlreadyDestroyed
(#7331)
---
.../replicator/ItWriteIntentSwitchRequestHandlerTest.java | 13 ++++++++++++-
1 file changed, 12 insertions(+), 1 deletion(-)
diff --git
a/modules/partition-replicator/src/integrationTest/java/org/apache/ignite/internal/partition/replicator/ItWriteIntentSwitchRequestHandlerTest.java
b/modules/partition-replicator/src/integrationTest/java/org/apache/ignite/internal/partition/replicator/ItWriteIntentSwitchRequestHandlerTest.java
index e930b8358bf..3d2b77bae4a 100644
---
a/modules/partition-replicator/src/integrationTest/java/org/apache/ignite/internal/partition/replicator/ItWriteIntentSwitchRequestHandlerTest.java
+++
b/modules/partition-replicator/src/integrationTest/java/org/apache/ignite/internal/partition/replicator/ItWriteIntentSwitchRequestHandlerTest.java
@@ -40,7 +40,18 @@ public class ItWriteIntentSwitchRequestHandlerTest extends
ClusterPerTestIntegra
@Override
protected void customizeInitParameters(InitParametersBuilder builder) {
-
builder.clusterConfiguration(aggressiveLowWatermarkIncreaseClusterConfig());
+ builder.clusterConfiguration(clusterConfig());
+ }
+
+ private static String clusterConfig() {
+ return "{\n"
+ + " ignite.gc.lowWatermark {\n"
+ + " dataAvailabilityTimeMillis: 1000,\n"
+ + " updateIntervalMillis: 100\n"
+ + " },\n"
+ // Default is 60 seconds, and we need to retry write intent
resolution in some tests.
+ + " ignite.replication.rpcTimeoutMillis: 1000\n"
+ + "}";
}
@Test