Repository: ignite Updated Branches: refs/heads/ignite-2.4 dd06d0bd7 -> 57479ec56
.NET: Fix CacheLocalTest.TestTxDeadlockDetection Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/57479ec5 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/57479ec5 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/57479ec5 Branch: refs/heads/ignite-2.4 Commit: 57479ec564e1761716da3d5f9feb7a64c396a9f9 Parents: dd06d0b Author: Pavel Tupitsyn <ptupit...@apache.org> Authored: Thu Jan 18 16:45:54 2018 +0300 Committer: Pavel Tupitsyn <ptupit...@apache.org> Committed: Thu Jan 18 16:46:29 2018 +0300 ---------------------------------------------------------------------- .../Cache/CacheAbstractTransactionalTest.cs | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/57479ec5/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTransactionalTest.cs ---------------------------------------------------------------------- diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTransactionalTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTransactionalTest.cs index 7a60e9a..2602a02 100644 --- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTransactionalTest.cs +++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheAbstractTransactionalTest.cs @@ -532,6 +532,11 @@ namespace Apache.Ignite.Core.Tests.Cache [Test] public void TestTxDeadlockDetection() { + if (LocalCache()) + { + return; + } + var cache = Cache(); var keys0 = Enumerable.Range(1, 100).ToArray();