This is an automated email from the ASF dual-hosted git repository. nizhikov pushed a commit to branch remove_deployment_spi in repository https://gitbox.apache.org/repos/asf/ignite.git
commit b4b1300e5d45fd5a265e5875677803fa3691800a Author: Nikolay Izhikov <[email protected]> AuthorDate: Tue Mar 10 12:33:56 2026 +0300 WIP --- .../cache/distributed/GridCachePreloadRestartAbstractSelfTest.java | 3 --- .../cache/distributed/dht/GridCacheDhtPreloadDisabledSelfTest.java | 2 -- 2 files changed, 5 deletions(-) diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCachePreloadRestartAbstractSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCachePreloadRestartAbstractSelfTest.java index 7cbe02cd669..c000455688c 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCachePreloadRestartAbstractSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/GridCachePreloadRestartAbstractSelfTest.java @@ -32,7 +32,6 @@ import static org.apache.ignite.cache.CacheRebalanceMode.ASYNC; import static org.apache.ignite.cache.CacheRebalanceMode.NONE; import static org.apache.ignite.cache.CacheRebalanceMode.SYNC; import static org.apache.ignite.cache.CacheWriteSynchronizationMode.FULL_SYNC; -import static org.apache.ignite.configuration.DeploymentMode.CONTINUOUS; import static org.apache.ignite.configuration.IgniteConfiguration.DFLT_REBALANCE_BATCH_SIZE; import static org.apache.ignite.internal.util.lang.ClusterNodeFunc.nodeIds; @@ -95,8 +94,6 @@ public abstract class GridCachePreloadRestartAbstractSelfTest extends GridCommon @Override protected IgniteConfiguration getConfiguration(String igniteInstanceName) throws Exception { IgniteConfiguration c = super.getConfiguration(igniteInstanceName); - c.setDeploymentMode(CONTINUOUS); - // Cache. CacheConfiguration cc = defaultCacheConfiguration(); diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCacheDhtPreloadDisabledSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCacheDhtPreloadDisabledSelfTest.java index 42060fab261..86e79299a2e 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCacheDhtPreloadDisabledSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/dht/GridCacheDhtPreloadDisabledSelfTest.java @@ -43,7 +43,6 @@ import org.junit.Test; import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL; import static org.apache.ignite.cache.CacheMode.PARTITIONED; import static org.apache.ignite.cache.CacheRebalanceMode.NONE; -import static org.apache.ignite.configuration.DeploymentMode.CONTINUOUS; import static org.apache.ignite.events.EventType.EVTS_CACHE_REBALANCE; import static org.apache.ignite.internal.util.lang.ClusterNodeFunc.nodeIds; @@ -91,7 +90,6 @@ public class GridCacheDhtPreloadDisabledSelfTest extends GridCommonAbstractTest //cacheCfg.setRebalanceThreadPoolSize(1); cfg.setCacheConfiguration(cacheCfg); - cfg.setDeploymentMode(CONTINUOUS); return cfg; }
