You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/04/27 15:02:54 UTC

[19/28] ignite git commit: Fixed failure in TxDeadlockDetectionMessageMarshallingTest.

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-5075-cacheStart
Commit: 24bb2328bca08238c917bf87ee9a9053e32ef328
Parents: 8dc3a4c
Author: devozerov <vo...@gridgain.com>
Authored: Thu Apr 27 15:39:32 2017 +0300
Committer: devozerov <vo...@gridgain.com>
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);