Repository: ignite Updated Branches: refs/heads/ignite-2.0 44e0de66b -> c219ff06f
Fixed failure in TxDeadlockDetectionMessageMarshallingTest. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/24bb2328 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/24bb2328 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/24bb2328 Branch: refs/heads/ignite-2.0 Commit: 24bb2328bca08238c917bf87ee9a9053e32ef328 Parents: 8dc3a4c Author: devozerov <[email protected]> Authored: Thu Apr 27 15:39:32 2017 +0300 Committer: devozerov <[email protected]> Committed: Thu Apr 27 15:39:32 2017 +0300 ---------------------------------------------------------------------- .../transactions/TxDeadlockDetectionMessageMarshallingTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/24bb2328/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/transactions/TxDeadlockDetectionMessageMarshallingTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/transactions/TxDeadlockDetectionMessageMarshallingTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/transactions/TxDeadlockDetectionMessageMarshallingTest.java index dd7c3b3..9126053 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/transactions/TxDeadlockDetectionMessageMarshallingTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/transactions/TxDeadlockDetectionMessageMarshallingTest.java @@ -61,7 +61,7 @@ public class TxDeadlockDetectionMessageMarshallingTest extends GridCommonAbstrac try { Ignite ignite = startGrid(0); - CacheConfiguration<Integer, Integer> ccfg = new CacheConfiguration<>(); + CacheConfiguration<Integer, Integer> ccfg = new CacheConfiguration<>(DEFAULT_CACHE_NAME); IgniteCache<Integer, Integer> cache = ignite.getOrCreateCache(ccfg);
