You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2017/12/11 13:27:44 UTC

ignite git commit: IGNITE-6406: Fixed parallel index worker name.

Repository: ignite
Updated Branches:
  refs/heads/master 321ba6063 -> 7ee6722d1


IGNITE-6406: Fixed parallel index worker name.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/7ee6722d
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/7ee6722d
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/7ee6722d

Branch: refs/heads/master
Commit: 7ee6722d1b92b4ace24befb0be4828474a993cea
Parents: 321ba60
Author: devozerov <vo...@gridgain.com>
Authored: Mon Dec 11 16:27:36 2017 +0300
Committer: devozerov <vo...@gridgain.com>
Committed: Mon Dec 11 16:27:36 2017 +0300

----------------------------------------------------------------------
 .../processors/query/schema/SchemaIndexCacheVisitorImpl.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/7ee6722d/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheVisitorImpl.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheVisitorImpl.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheVisitorImpl.java
index 7b8de06..b99fb6d 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheVisitorImpl.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/schema/SchemaIndexCacheVisitorImpl.java
@@ -299,7 +299,7 @@ public class SchemaIndexCacheVisitorImpl implements SchemaIndexCacheVisitor {
         @SuppressWarnings("unchecked")
         public AsyncWorker(List<GridDhtLocalPartition> parts, SchemaIndexCacheVisitorClosure clo, int remainder,
             GridFutureAdapter<Void> fut) {
-            super(cctx.igniteInstanceName(), "parallel-idx-worker-" + cctx.cache() + "-" + remainder,
+            super(cctx.igniteInstanceName(), "parallel-idx-worker-" + cctx.cache().name() + "-" + remainder,
                 cctx.logger(AsyncWorker.class));
 
             this.parts = parts;