Repository: ignite Updated Branches: refs/heads/ignite-1534 eb93fd164 -> 6819e07e7
ignite-1534 debug Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/6819e07e Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/6819e07e Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/6819e07e Branch: refs/heads/ignite-1534 Commit: 6819e07e7babc4f581abcbd8257e8831db22c02e Parents: eb93fd1 Author: sboikov <[email protected]> Authored: Wed Sep 30 16:28:16 2015 +0300 Committer: sboikov <[email protected]> Committed: Wed Sep 30 16:28:16 2015 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/cache/GridCacheProcessor.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/6819e07e/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheProcessor.java ---------------------------------------------------------------------- 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 8cdba0b..48455a3 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 @@ -99,6 +99,7 @@ import org.apache.ignite.internal.processors.cache.version.GridCacheVersionManag import org.apache.ignite.internal.processors.plugin.CachePluginManager; import org.apache.ignite.internal.processors.query.GridQueryProcessor; import org.apache.ignite.internal.util.F0; +import org.apache.ignite.internal.util.GridDebug; import org.apache.ignite.internal.util.future.GridCompoundFuture; import org.apache.ignite.internal.util.future.GridFinishedFuture; import org.apache.ignite.internal.util.future.GridFutureAdapter; @@ -2397,6 +2398,8 @@ public class GridCacheProcessor extends GridProcessorAdapter { * @param topVer Current topology version. */ private void onCacheChangeRequested(DynamicCacheChangeBatch batch, AffinityTopologyVersion topVer) { + GridDebug.debug("onCacheChangeRequested", topVer, batch); + for (DynamicCacheChangeRequest req : batch.requests()) { if (req.template()) { CacheConfiguration ccfg = req.startCacheConfiguration();
