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

[jira] [Updated] (IGNITE-13077) .NET: transaction shared for multiple Ignite trying to start transactions in one thread

     [ https://issues.apache.org/jira/browse/IGNITE-13077?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Stronchinskiy updated IGNITE-13077:
------------------------------------------
    Summary: .NET: transaction shared for multiple Ignite trying to start transactions in one thread  (was: .NET transaction gets overwritten for multiple Ignite trying to start transactions in one thread)

> .NET: transaction shared 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
>            Priority: Minor
>              Labels: .NET
>
> {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)