Skip to content

Commit

Permalink
STORM-3148: Addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert (Bobby) Evans committed Jul 13, 2018
1 parent 6301756 commit bfb267e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 35 deletions.
Expand Up @@ -50,6 +50,8 @@ public void channelRead(ChannelHandlerContext ctx, Object message) throws Except
try {
remoteBpStatus[bpTask].set(true);
} catch (ArrayIndexOutOfBoundsException e) {
//Just in case we get something we are confused about
// we can continue processing the rest of the tasks
LOG.error("BP index out of bounds {}", e);
}
}
Expand All @@ -59,6 +61,8 @@ public void channelRead(ChannelHandlerContext ctx, Object message) throws Except
try {
remoteBpStatus[bpTask].set(false);
} catch (ArrayIndexOutOfBoundsException e) {
//Just in case we get something we are confused about
// we can continue processing the rest of the tasks
LOG.error("BP index out of bounds {}", e);
}
}
Expand Down

This file was deleted.

0 comments on commit bfb267e

Please sign in to comment.