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 Mar 19, 2019. It is now read-only.
Similar to aspnet/KestrelHttpServer#429, setting null values in a multi-valued known header will crash the server.
The expected behaviour is null values for headers should be ignored both for known and unknown headers. Header values of empty strings will be ignored for known headers due to API limitations but will be sent in the response for unknown headers.
The text was updated successfully, but these errors were encountered:
To reduce unnecessary filtering, it was decided to convert all null headers to empty headers and let Http.Sys decide whether it's included in the response. Currently, Http.Sys will ignore null/empty known headers but will keep null/empty unknown headers.
Similar to aspnet/KestrelHttpServer#429, setting null values in a multi-valued known header will crash the server.
The expected behaviour is null values for headers should be ignored both for known and unknown headers. Header values of empty strings will be ignored for known headers due to API limitations but will be sent in the response for unknown headers.
The text was updated successfully, but these errors were encountered: