You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Pavel Tupitsyn (JIRA)" <ji...@apache.org> on 2017/09/22 11:20:00 UTC

[jira] [Created] (IGNITE-6486) .NET: ActiveOnStart does not work

Pavel Tupitsyn created IGNITE-6486:
--------------------------------------

             Summary: .NET: ActiveOnStart does not work
                 Key: IGNITE-6486
                 URL: https://issues.apache.org/jira/browse/IGNITE-6486
             Project: Ignite
          Issue Type: Bug
          Components: platforms
    Affects Versions: 2.2
            Reporter: Pavel Tupitsyn
            Assignee: Pavel Tupitsyn
             Fix For: 2.3


{{IgniteConfiguration.IsActiveOnStart}} seems to have no effect. The following code causes an exception on {{GetOrCreateCache}}:

{code}
var cfg = new IgniteConfiguration
{
    PersistentStoreConfiguration = new PersistentStoreConfiguration(),
    IsActiveOnStart = true
};

using (var ignite = Ignition.Start(cfg))
{
    var cache = ignite.GetOrCreateCache<int, int>("foo");
}
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)