This is an automated email from the ASF dual-hosted git repository.

ilyak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 52cb38c  IGNITE-13711 Log exception where query initialization failed 
for cache - Fixes #8463.
52cb38c is described below

commit 52cb38c641620446edd5a1033a62205deca41f2b
Author: Ilya Kasnacheev <ilya.kasnach...@gmail.com>
AuthorDate: Thu Nov 19 18:05:05 2020 +0300

    IGNITE-13711 Log exception where query initialization failed for cache - 
Fixes #8463.
---
 .../apache/ignite/internal/processors/cache/GridCacheProcessor.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
index d3beafc..01124fb 100644
--- 
a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
+++ 
b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java
@@ -1711,7 +1711,8 @@ public class GridCacheProcessor extends 
GridProcessorAdapter {
                     
ctx.query().initQueryStructuresForNotStartedCache(cacheDesc);
                 }
                 catch (Exception e) {
-                    log.error("Can't initialize query structures for not 
started cache [cacheName=" + cacheDesc.cacheName() + "]");
+                    log.error("Can't initialize query structures for not 
started cache [cacheName=" +
+                        cacheDesc.cacheName() + "]", e);
                 }
             });
 

Reply via email to