Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix redirects #1924

Merged
merged 1 commit into from
Feb 8, 2024
Merged

Fix redirects #1924

merged 1 commit into from
Feb 8, 2024

Conversation

senekor
Copy link
Contributor

@senekor senekor commented Feb 8, 2024

fix #1921

This regression was introduced in ca2a162.

In the update from Rocket v0.5.0-rc.3 to v0.5.0, there was a breaking change missed in the changelog of v0.5.0-rc.4 that affected us.
The relevant section in the changelog starts with the line: "The status codes used when built-in guards forward were changed."

We used the status code 404 to invoke our custom not_found catcher. This custom catcher is responsible for the redirects. When the status code changed to 422, this catcher was not invoked and the redirects were not triggered.

This fix simply invokes the catcher for both status codes 404 and 422.

This regression was introduced in ca2a162.
Redirects like /team.html -> /governance didn't work anymore.

In the update from Rocket v0.5.0-rc.3 to v0.5.0, there was a breaking
change missed in the changelog of v0.5.0-rc.4 that affected us.
https://github.com/rwf2/Rocket/blob/v0.5.0-rc.4/CHANGELOG.md

The relevant section in the changelog starts with the line:
"The status codes used when built-in guards forward were changed."

We used the status code 404 to invoke our custom `not_found` catcher.
This custom catcher is responsible for the redirects.
When the status code changed to 422, this catcher was not invoked and
the redirects were not triggered.

This fix simply invokes the catcher for both status codes 404 and 422.
@senekor senekor requested a review from a team as a code owner February 8, 2024 22:27
@Manishearth Manishearth merged commit 660f75c into rust-lang:master Feb 8, 2024
1 check passed
@Manishearth
Copy link
Member

we should check this works on staging (usually takes ~20min max to deploy) and then deploy

@apiraino
Copy link
Contributor

apiraino commented Feb 9, 2024

thanks @senekor !

@ehuss ehuss mentioned this pull request Feb 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Broken link
3 participants