Merge branch '5.2.x' into master

This commit is contained in:
Rossen Stoyanchev
2020-09-14 15:43:38 +01:00
3 changed files with 48 additions and 5 deletions

View File

@@ -411,7 +411,7 @@ public abstract class AbstractMessageConverterMethodProcessor extends AbstractMe
try {
int status = response.getServletResponse().getStatus();
if (status < 200 || status > 299) {
if (status < 200 || (status > 299 && status < 400)) {
return;
}
}