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 was archived by the owner on Dec 18, 2018. It is now read-only.
are not being logged except when logged before being thrown (such as when calling Frame.RejectRequest), even though the comment in the catch block indicates that should be the case.
BadHttpRequestExceptions caught inKestrelHttpServer/src/Microsoft.AspNetCore.Server.Kestrel/Internal/Http/FrameOfT.cs
Line 196 in e55c624
Frame.RejectRequest), even though the comment in the catch block indicates that should be the case.This is the case for requests containing invalid characters in headers (see aspnet/Mvc#5662), where the
BadHttpRequestExceptionis thrown fromMemoryPoolIterator.GetAsciiString. This should be refactored BTW.