Fix links in glm_image.md#3028
Merged
hsliuustc0106 merged 1 commit intovllm-project:mainfrom Apr 22, 2026
Merged
Conversation
Broken links in GLM documentation that make tests fail Signed-off-by: Ricardo Noriega <rnoriega@redhat.com>
5 tasks
lishunyang12
approved these changes
Apr 22, 2026
1 task
qinganrice
pushed a commit
to qinganrice/vllm-omni
that referenced
this pull request
Apr 23, 2026
Signed-off-by: Ricardo Noriega <rnoriega@redhat.com>
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
Fix 3 broken relative links in
docs/user_guide/examples/online_serving/glm_image.mdthat cause the ReadTheDocs build to fail in strict mode.The links use
../../../../serving/(4 levels up) when they should use../../../serving/(3 levels up). The file is atdocs/user_guide/examples/online_serving/glm_image.md, so reachingdocs/user_guide/serving/requires going up 3 directories, not 4.Introduced in PR #2051 (
[Doc] Improve diffusion generation parameter docs for online serving, commitd96d63cb).This currently blocks the ReadTheDocs CI for all open PRs.
Test Plan
No additional test scripts needed -- this is a documentation-only fix.
Test Result
Before:
Aborted with 3 warnings in strict mode!After: 0 warnings from
glm_image.md. Build completes successfully.