zrlw commented on issue #15280:
URL: https://github.com/apache/dubbo/issues/15280#issuecomment-2995361758
DecodeException might be caused by IOException, see details at
RequestUtils.java
```
public static Object decodeBody(HttpRequest request, Type type) {
try {
int available = is.available();
... ...
} catch (IOException e) {
throw new DecodeException("Error reading is", e);
}
}
```
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]