RuiLi8080 commented on a change in pull request #3296:
URL: https://github.com/apache/storm/pull/3296#discussion_r446788932
##########
File path: storm-client/src/jvm/org/apache/storm/messaging/netty/Server.java
##########
@@ -260,7 +260,15 @@ public void channelActive(Channel c) {
@Override
public void received(Object message, String remote, Channel channel)
throws InterruptedException {
- List<TaskMessage> msgs = (List<TaskMessage>) message;
+ List<TaskMessage> msgs;
+
+ try {
+ msgs = (List<TaskMessage>) message;
+ } catch (ClassCastException e) {
+ LOG.error("Worker netty server receive message other than the
expected class List<TaskMessage>", e);
Review comment:
@agresch Remote added.
@bipinprasad Yes the exception message can be displayed just as the
`ClassCastException` in the description.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]