You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
When I post a 30MB json body, model become null without any hints and kestrel report "Request body too large" in logs.
I think #6055 is a bad change because it make people doesn't know what's really happening.
The text was updated successfully, but these errors were encountered:
This is essentially a dup of #4920, the other links bugs mentioned earlier are unlikely to be related.
Kestrel is throwing an exception when the post is greater than the configured limit, and MVC is unfortunately hiding the exception. In #4920 we'll make these types of exceptions more obvious by default.
Refer to #6055 and aspnet/KestrelHttpServer#1877,
I hava a webapi method like this:
When I post a 30MB json body,
model
become null without any hints and kestrel report "Request body too large" in logs.I think #6055 is a bad change because it make people doesn't know what's really happening.
The text was updated successfully, but these errors were encountered: