You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Sergey Stronchinskiy (Jira)" <ji...@apache.org> on 2020/05/26 14:04:00 UTC

[jira] [Created] (IGNITE-13077) .NET transaction gets overwritten for multiple Ignite trying to start transactions in one thread

Sergey Stronchinskiy created IGNITE-13077:
---------------------------------------------

             Summary: .NET transaction gets overwritten for multiple Ignite trying to start transactions in one thread
                 Key: IGNITE-13077
                 URL: https://issues.apache.org/jira/browse/IGNITE-13077
             Project: Ignite
          Issue Type: Bug
          Components: platforms
            Reporter: Sergey Stronchinskiy


{code:c#}
var trs1 = Ignition.Start(new IgniteConfiguration
     {
         IgniteInstanceName = "First"
     })
     .GetTransactions();
 trs1.TxStart();
 var trs2 = Ignition.Start(new IgniteConfiguration
     {
         IgniteInstanceName = "Second"
     })
     .GetTransactions();
 Assert.IsNull(trs2.Tx); // fails
{code}




--
This message was sent by Atlassian Jira
(v8.3.4#803005)