Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-54-55 4ebc46f59 -> 1a11aedce


# IGNITE-158 Bug fix: Use ClusterGroupEmptyCheckedException instead of 
ClusterGroupEmptyException.


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

Branch: refs/heads/ignite-54-55
Commit: 1a11aedce64884072c56ead8270d0ea412b63ecd
Parents: 4ebc46f
Author: sevdokimov <sergey.evdoki...@jetbrains.com>
Authored: Wed Feb 4 10:11:56 2015 +0300
Committer: sevdokimov <sergey.evdoki...@jetbrains.com>
Committed: Wed Feb 4 10:11:56 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/1a11aedc/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 e4d3fa0..37cf058 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
@@ -3406,7 +3406,7 @@ public abstract class GridCacheAdapter<K, V> implements 
GridCache<K, V>,
                 }
             } while (ctx.affinity().affinityTopologyVersion() > topVer);
         }
-        catch (ClusterGroupEmptyException ignore) {
+        catch (ClusterGroupEmptyCheckedException ignore) {
             if (log.isDebugEnabled())
                 log.debug("All remote nodes left while cache remove 
[cacheName=" + name() + "]");
         }

Reply via email to