-
Notifications
You must be signed in to change notification settings - Fork 298
Release Team link is broken #1246
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
Comments
Thanks for the report! There is an issue with the website where the redirects have stopped working. This is tracked in rust-lang/www.rust-lang.org#1921. |
Perhaps the release team is part of (or was folded into?) the Infra Team? Releases is listed as their responsibility: |
@ehuss There isn't a redirect listed for |
The route |
Looks like pages for subteams are deliberately not shown. Since release is a subteam of infra, that applies there as well. I don't know what the reason or the best way to fix it is. The code snippet is from here. // Don't show pages for subteams
if let Some(subteam) = &main_team.subteam_of {
// Launching-pad does not have a page of its own, but we do want
// to show the working groups that are inside it.
if subteam != "launching-pad" {
return Err(TeamNotFound.into());
}
} |
Ok it makes sense to me now, the subteams are listed as sections on the page of the parent team. So the correct link would probably be https://www.rust-lang.org/governance/teams/infra#Release%20team. |
The release team link (as seen on this page) no longer works. The link is
https://www.rust-lang.org/governance/teams/release
I can't seem to find where it should point to, but in any case right now it's a broken link.
The text was updated successfully, but these errors were encountered: