Skip to content

Commit

Permalink
Dubbo throws IoException with error message while decoding fail (#4396)
Browse files Browse the repository at this point in the history
Really have this problem
  • Loading branch information
qixiaobo authored and manzhizhen committed Jun 29, 2019
1 parent 87a2f07 commit f932569
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -128,7 +128,7 @@ public Object decode(Channel channel, InputStream input) throws IOException {
}
break;
default:
throw new IOException("Unknown result flag, expect '0' '1' '2', get " + flag);
throw new IOException("Unknown result flag, expect '0' '1' '2' '3' '4' '5', get " + flag);
}
if (in instanceof Cleanable) {
((Cleanable) in).cleanup();
Expand Down

0 comments on commit f932569

Please sign in to comment.