Disable sporadic MySqlTxTimeoutMessageStoreTests.testInt2993IdCacheConcurrency

This commit is contained in:
Artem Bilan
2025-06-06 17:58:49 -04:00
parent 3e046089dc
commit 2ff14c70c8

View File

@@ -16,6 +16,8 @@
package org.springframework.integration.jdbc.store.channel;
import java.util.concurrent.ExecutionException;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
@@ -38,4 +40,12 @@ public class MySqlTxTimeoutMessageStoreTests extends AbstractTxTimeoutMessageSto
super.testInt3181ConcurrentPolling();
}
@Override
@Test
@Disabled("Fails sporadically")
public void testInt2993IdCacheConcurrency() throws InterruptedException, ExecutionException {
super.testInt2993IdCacheConcurrency();
}
}