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 Antonov (Jira)" <ji...@apache.org> on 2020/06/01 15:04:00 UTC

[jira] [Created] (IGNITE-13102) IgniteCache#isClosed() returns false on server node even if the cache had closed before.

Sergey Antonov created IGNITE-13102:
---------------------------------------

             Summary: IgniteCache#isClosed() returns false on server node even if the cache had closed before.
                 Key: IGNITE-13102
                 URL: https://issues.apache.org/jira/browse/IGNITE-13102
             Project: Ignite
          Issue Type: Bug
    Affects Versions: 2.8.1, 2.8
            Reporter: Sergey Antonov
             Fix For: 2.9


IgniteCache#isClosed() still returns {{false}} even after {{IgniteCache#close()}}. Only server nodes affect by this problem. 
Simple reproducer:

{code:java}
    @Test
    public void test() throws Exception {
        IgniteEx node = startGrid(0);

        IgniteCache<Object, Object> cache = node.getOrCreateCache(DEFAULT_CACHE_NAME);

        assertFalse(cache.isClosed());

        cache.close();

        // java.lang.AssertionError
        assertTrue(cache.isClosed());
    }
{code}




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