docs(cron): fix stale verifier path — plugins/cron → plugins/cron_providers#71113
Open
santhiprakash wants to merge 2 commits into
Open
docs(cron): fix stale verifier path — plugins/cron → plugins/cron_providers#71113santhiprakash wants to merge 2 commits into
santhiprakash wants to merge 2 commits into
Conversation
…viders - Problem: docs/chronos-managed-cron-contract.md references `plugins/cron/chronos/verify.py` which no longer exists after the plugins/cron → plugins/cron_providers rename (merged in NousResearch#51702). - Fix: update to `plugins/cron_providers/chronos/verify.py` which is the current location. - Verification: confirmed the corrected path exists on upstream/main via git show; confirmed no other stale `plugins/cron/` references remain in docs/*.md. Co-Authored-By: Paperclip <noreply@paperclip.ing>
- website/docs/developer-guide/cron-internals.md: provider discovery path - website/docs/reference/cli-commands.md: custom provider path - Both leftover from the plugins/cron → plugins/cron_providers rename (NousResearch#51702) - Verified: corrected path matches cron/scheduler_provider.py and plugins/cron_providers/__init__.py Co-Authored-By: Paperclip <noreply@paperclip.ing>
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
docs/chronos-managed-cron-contract.mdline 135 referencesplugins/cron/chronos/verify.pyas the inbound fire verifier. This path no longer exists — the directory was renamed fromplugins/crontoplugins/cron_providersin the merged PR #51702, but this docs file was not updated in that rename.Triage / Root cause
Leftover reference from the
plugins/cron→plugins/cron_providerspackage rename. The code moved correctly; the wire-contract doc was missed.Fix
plugins/cron/chronos/verify.py→plugins/cron_providers/chronos/verify.py(one-line change)plugins/cron_providers/chronos/verify.pyexists onupstream/mainVerification
Notes / Risks