Fix broken link to Adding Dynamic Endpoints documentation - #11833
Open
keshangamage wants to merge 1 commit into
Open
Fix broken link to Adding Dynamic Endpoints documentation#11833keshangamage wants to merge 1 commit into
keshangamage wants to merge 1 commit into
Conversation
keshangamage
requested review from
chamilaadhi and
tharikaGitHub
as code owners
August 26, 2026 10:47
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
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.
Purpose
The "Adding Dynamic Endpoints" link in the Dynamic Endpoint row of the Endpoint Types page returns a 404.
The link points to:
{{base_path}}/api-design-manage/design/api-policies/regular-gateway-policies/adding-dynamic-endpoints/That path does not exist.
en/redirects.ymlmaps the elevenregular-gateway-policiespaths that use themanage-apis/prefix, but there is no entry for theapi-design-manage/prefix used here, so the request falls through to the 404 page.Goals
Restore the link so readers can reach the Adding Dynamic Endpoints page from the endpoint type description that references it.
Approach
Updated the link to the path the page is actually published at, per the
mkdocs.ymlnav entry (api-gateway/policies/adding-dynamic-endpoints.md):{{base_path}}/api-gateway/policies/adding-dynamic-endpoints/This matches what
en/docs/llms.txtalready lists for the page, and matches how the same link is written on themasterbranch. Verified locally withmkdocs servethat the link resolves to the Adding Dynamic Endpoints page instead of the 404 page.User stories
N/A
Release note
Fixed a broken link to the "Adding Dynamic Endpoints" documentation on the Endpoint Types page.
Documentation
N/A - this PR is the documentation change.
Training
N/A
Certification
N/A - link correction only; no change to product behavior or documented procedure.
Marketing
N/A
Automation tests
N/A - documentation-only change.
Security checks
Samples
N/A
Related PRs
N/A
Migrations (if applicable)
N/A
Test environment
N/A - documentation-only change. Verified with a local
mkdocs servebuild and against the published 4.7.0 documentation site.Learning
The
masterbranch already carries the corrected link, so this only reproduces on the published 4.7.0 site. Comparing the two branches is what isolated it. Worth noting that a stale link is not automatically a broken one here -en/redirects.ymlcovers many old paths, and I checked it before concluding this one was genuinely unmapped.