fix: point console links at final URLs, correct Runpod brand casing - #233
Open
danstotts-ops wants to merge 2 commits into
Open
fix: point console links at final URLs, correct Runpod brand casing#233danstotts-ops wants to merge 2 commits into
danstotts-ops wants to merge 2 commits into
Conversation
The README links to legacy www console paths. Each one 301s to the console subdomain today, so readers take an extra hop and link graphs record the citation as indirect rather than direct. Verified destinations, all returning 200: /console/serverless/user/settings -> /serverless/user/settings /console/serverless/user/endpoints -> /serverless /console/hub/runpod-workers/... -> /hub/runpod-workers/... Note the endpoints path resolves to /serverless, not to a like-named path on the console subdomain, so this is not a mechanical prefix swap. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
The brand is written Runpod, not RunPod. The README carried 11 instances of the old casing and none of the current one. This is the same correction already merged in the docs repo. Prose only. Every URL in the file already uses lowercase runpod, and the change aborts if the string appears inside a link, so no identifiers or paths move. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Author
|
@rutvik-runpod @celine-runpod could one of you take a look when you get a chance? Two independent commits, happy for you to take just the first if the brand casing one is noise for this repo. Main thing worth a second pair of eyes: the endpoints link resolves to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two small README fixes, in separate commits so either can be dropped.
1. Console links point at legacy paths
Three links use
www.runpod.io/console/*, which 301s to the console subdomain. Readers take an extra hop, and link graphs record the citation as indirect rather than direct. Surfaced while triaging an Ahrefs lost-backlink report, where these showed up aslostredirect.Verified each destination returns 200 before changing it:
www.runpod.io/console/serverless/user/settingsconsole.runpod.io/serverless/user/settingswww.runpod.io/console/serverless/user/endpointsconsole.runpod.io/serverlesswww.runpod.io/console/hub/runpod-workers/worker-comfyuiconsole.runpod.io/hub/runpod-workers/worker-comfyuiWorth flagging the middle one: the endpoints path resolves to
/serverless, not to a like-named path on the console subdomain. A mechanical prefix swap would have producedconsole.runpod.io/serverless/user/endpoints, which is a 404. Nothing currently links there, but it is an easy trap if anyone repeats this by hand elsewhere.No user-facing breakage today, every existing link works. This is hop removal and citation hygiene.
2. Brand casing (separate commit)
The brand is Runpod, not RunPod. The README had 11 of the old casing and none of the current one. Same correction already merged in the docs repo.
Prose only. Every URL in the file already uses lowercase
runpod, and the script aborts if the string appears inside a link, so no paths or identifiers moved.Note on Docker Hub
release.yml,manual-push-dockerhub.yml, andmanual-build-all.ymlall sync this README to the Docker Hub description, so merging propagates there on the next release without any separate step.🤖 Generated with Claude Code