You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/10/26 09:03:26 UTC

[05/12] ignite git commit: IGNITE-6512 Add an option to start caches in inactive state - fixing missed call of cache creation - Fixes #2913.

IGNITE-6512 Add an option to start caches in inactive state
- fixing missed call of cache creation - Fixes #2913.

Signed-off-by: Alexey Goncharuk <al...@gmail.com>


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

Branch: refs/heads/ignite-3478
Commit: 70a57d57628778a018ae0c6eacf772a66b51e018
Parents: f7aa443
Author: Eduard Shangareev <es...@gridgain.com>
Authored: Wed Oct 25 14:55:02 2017 +0300
Committer: Alexey Goncharuk <al...@gmail.com>
Committed: Wed Oct 25 14:55:02 2017 +0300

----------------------------------------------------------------------
 .../src/main/java/org/apache/ignite/internal/IgniteKernal.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/70a57d57/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
----------------------------------------------------------------------
diff --git a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
index ba42a95..bde7be2 100644
--- a/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
+++ b/modules/core/src/main/java/org/apache/ignite/internal/IgniteKernal.java
@@ -2864,7 +2864,7 @@ public class IgniteKernal implements IgniteEx, IgniteMXBean, Externalizable {
             ctx.cache().dynamicStartCaches(cacheCfgs,
                 true,
                 true,
-                true).get();
+                false).get();
 
             List<IgniteCache> createdCaches = new ArrayList<>(cacheCfgs.size());
 
@@ -2955,7 +2955,7 @@ public class IgniteKernal implements IgniteEx, IgniteMXBean, Externalizable {
             ctx.cache().dynamicStartCaches(cacheCfgs,
                 false,
                 true,
-                true).get();
+                false).get();
 
             List<IgniteCache> createdCaches = new ArrayList<>(cacheCfgs.size());