TomcatHttpHandlerAdapter continues after 0 bytes
This commit makes sure that TomcatServerHttpRequest::readFromInputStream follows the same contract as the method it overrides, and returns AbstractListenerReadPublisher.EMPTY_BUFFER when 0 bytes are read. See gh-28241
This commit is contained in:
parent
8b39698553
commit
3b4ae7b028
|
@ -153,7 +153,7 @@ public class TomcatHttpHandlerAdapter extends ServletHttpHandlerAdapter {
|
||||||
return EOF_BUFFER;
|
return EOF_BUFFER;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return null;
|
return AbstractListenerReadPublisher.EMPTY_BUFFER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
finally {
|
finally {
|
||||||
|
|
Loading…
Reference in New Issue