You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Nick Pordash (JIRA)" <ji...@apache.org> on 2017/05/01 16:56:04 UTC

[jira] [Created] (IGNITE-5123) Ignite.cache(String) returns null in PluginProvider.onIgniteStart()

Nick Pordash created IGNITE-5123:
------------------------------------

             Summary: Ignite.cache(String) returns null in PluginProvider.onIgniteStart()
                 Key: IGNITE-5123
                 URL: https://issues.apache.org/jira/browse/IGNITE-5123
             Project: Ignite
          Issue Type: Bug
    Affects Versions: 2.0
            Reporter: Nick Pordash


Given an Ignite node that has pre-configured caches (via IgniteConfiguration.setCacheConfiguration) if you try to obtain a reference to the cache instance in PluginProvider.onIgniteStart() you'll get a null reference.

@Override
public void onIgniteStart() throws IgniteCheckedException {
    ignite.cacheNames().forEach(name -> {
        assert ignite.cache(name) != null : "Cache is null: " + name;
    });
}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)