docs(tools-reference): fix stale feishu_comment.py path - #71185
Closed
santhiprakash wants to merge 1 commit into
Closed
santhiprakash wants to merge 1 commit into
santhiprakash wants to merge 1 commit into
Conversation
- Problem: website/docs/reference/tools-reference.md references `gateway/platforms/feishu_comment.py` but the feishu platform was migrated to `plugins/platforms/feishu/feishu_comment.py` — the old path no longer exists. - Fix: update the path to `plugins/platforms/feishu/feishu_comment.py`. - Verification: confirmed the file exists at the corrected path on upstream/main (e0dfcf2).
Author
|
Closing this PR: the target files no longer exist on the current main branch due to a major repository restructuring. The doc/code changes this PR addresses may already be fixed or are no longer applicable. Will verify and re-open a fresh PR if the issue persists on the restructured codebase. |
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.
Problem
website/docs/reference/tools-reference.md line 67 references the Feishu document-comment handler as gateway/platforms/feishu_comment.py. That path no longer exists — the feishu platform was migrated to plugins/platforms/feishu/, so the actual file is plugins/platforms/feishu/feishu_comment.py.
Triage / Root cause
Path drift after the platforms were moved from gateway/platforms/ to plugins/platforms//. The migration caught most references but missed this one in the tools reference doc.
Fix
One-line path correction: gateway/platforms/feishu_comment.py → plugins/platforms/feishu/feishu_comment.py.
Verification