# sprint-2 fixed closure serialization
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/0865ad4d Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/0865ad4d Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/0865ad4d Branch: refs/heads/ignite-224 Commit: 0865ad4d95cccb05286077ce1d649f590500e79e Parents: 7e19e2e Author: sboikov <sboi...@gridgain.com> Authored: Tue Feb 17 15:24:41 2015 +0300 Committer: sboikov <sboi...@gridgain.com> Committed: Tue Feb 17 15:24:41 2015 +0300 ---------------------------------------------------------------------- .../ignite/internal/processors/cache/GridCacheAdapter.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/0865ad4d/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 229cecf..9d8f243 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 @@ -6185,6 +6185,8 @@ public abstract class GridCacheAdapter<K, V> implements GridCache<K, V>, out.writeObject(p); out.writeObject(args); + + U.writeString(out, cacheName); } /** {@inheritDoc} */ @@ -6193,6 +6195,8 @@ public abstract class GridCacheAdapter<K, V> implements GridCache<K, V>, p = (IgniteBiPredicate<K, V>)in.readObject(); args = (Object[])in.readObject(); + + cacheName = U.readString(in); } /** {@inheritDoc} */