Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sboikov committed Jan 31, 2015
1 parent 724ba11 commit 60f1967
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void testMapKeyToNode() {
@Override protected IgniteClosure<Throwable, Throwable> errorHandler() {
return new IgniteClosure<Throwable, Throwable>() {
@Override public Throwable apply(Throwable e) {
if (e instanceof IgniteCheckedException || X.hasCause(e, ClusterTopologyCheckedException.class)) {
if (e instanceof IgniteException || e instanceof IgniteCheckedException || X.hasCause(e, ClusterTopologyCheckedException.class)) {
info("Discarding exception: " + e);

return null;
Expand Down

0 comments on commit 60f1967

Please sign in to comment.