IGNITE-589 - Error message.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/c29cb272 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/c29cb272 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/c29cb272 Branch: refs/heads/ignite-573 Commit: c29cb272da87d742e58e97b436f1eff42baac180 Parents: b7fa7a6 Author: Alexey Goncharuk <agoncha...@gridgain.com> Authored: Wed Mar 25 18:49:59 2015 -0700 Committer: Alexey Goncharuk <agoncha...@gridgain.com> Committed: Wed Mar 25 18:49:59 2015 -0700 ---------------------------------------------------------------------- .../ignite/internal/processors/query/GridQueryProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/c29cb272/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java index 235f434..5f34135 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/query/GridQueryProcessor.java @@ -446,8 +446,8 @@ public class GridQueryProcessor extends GridProcessorAdapter { */ private void checkxEnabled() throws IgniteException { if (idx == null) - throw new IgniteException("Failed to execute query because indexing is disabled (consider adding " + - INDEXING.module() + "to classpath)."); + throw new IgniteException("Failed to execute query because indexing is disabled (consider adding module " + + INDEXING.module() + " to classpath or moving it from 'optional' to 'libs' folder)."); } /**