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

[jira] [Created] (IGNITE-13711) Exception is discarded in GridCacheProcessor

Ilya Kasnacheev created IGNITE-13711:
----------------------------------------

             Summary: Exception is discarded in GridCacheProcessor
                 Key: IGNITE-13711
                 URL: https://issues.apache.org/jira/browse/IGNITE-13711
             Project: Ignite
          Issue Type: Improvement
          Components: cache
            Reporter: Ilya Kasnacheev


{code}
locJoinCtx.initCaches()
 .forEach(cacheDesc -> {
  try {
   ctx.query().initQueryStructuresForNotStartedCache(cacheDesc);
  }
  catch (Exception e) {
   log.error("Can't initialize query structures for not started cache [cacheName=" + cacheDesc.cacheName() + "]");
  }
 });
{code}



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