# IGNITE-54-55 Fix compilation error.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f6fa0274 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f6fa0274 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f6fa0274 Branch: refs/heads/ignite-57 Commit: f6fa0274124b63879e624edcb1b69c9b7a75c081 Parents: 66aa02b Author: sevdokimov <[email protected]> Authored: Tue Feb 3 16:46:25 2015 +0300 Committer: sevdokimov <[email protected]> Committed: Tue Feb 3 16:46:25 2015 +0300 ---------------------------------------------------------------------- .../apache/ignite/internal/processors/cache/GridCacheAdapter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f6fa0274/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java index b974c47..3271a5b 100644 --- a/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java +++ b/modules/core/src/main/java/org/apache/ignite/internal/processors/cache/GridCacheAdapter.java @@ -3398,7 +3398,7 @@ public abstract class GridCacheAdapter<K, V> implements GridCache<K, V>, topVer = ctx.affinity().affinityTopologyVersion(); // Send job to all nodes. - Collection<ClusterNode> nodes = ctx.grid().forCache(name()).nodes(); + Collection<ClusterNode> nodes = ctx.grid().forCacheNodes(name()).nodes(); IgniteInternalFuture<Object> fut = null;
