-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Closed
Labels
affected-fewThis issue impacts only small number of customersThis issue impacts only small number of customersarea-mvcIncludes: MVC, Actions and Controllers, Localization, CORS, most templatesIncludes: MVC, Actions and Controllers, Localization, CORS, most templatesbugThis issue describes a behavior which is not expected - a bug.This issue describes a behavior which is not expected - a bug.community-contributionIndicates that the PR has been added by a community memberIndicates that the PR has been added by a community membergood first issueGood for newcomers.Good for newcomers.investigateseverity-minorThis label is used by an internal toolThis label is used by an internal tool
Milestone
Description
RedirectHandler is added by default to a HttpClient produced by WebApplicationFactory<TEntryPoint>.
When the server returns a result with one the following codes
- 301 Moved Permanently
- 302 Found
- 307 Temporary Redirect
- 308 Permanent Redirect
but without a Location header, NullReferenceException is thrown here.
For all mentioned status codes rfc7538 and rfc7231 say 'The server SHOULD generate a Location header field', so it's not required.
Expected behavior: Exception is not thrown, response is returned as is (like HttpClient does in the same situation).
Metadata
Metadata
Assignees
Labels
affected-fewThis issue impacts only small number of customersThis issue impacts only small number of customersarea-mvcIncludes: MVC, Actions and Controllers, Localization, CORS, most templatesIncludes: MVC, Actions and Controllers, Localization, CORS, most templatesbugThis issue describes a behavior which is not expected - a bug.This issue describes a behavior which is not expected - a bug.community-contributionIndicates that the PR has been added by a community memberIndicates that the PR has been added by a community membergood first issueGood for newcomers.Good for newcomers.investigateseverity-minorThis label is used by an internal toolThis label is used by an internal tool