Extend no-cache to remote mixins#372
Merged
Merged
Conversation
Contributor
Reviewer's GuideExtends the --no-cache behavior to remote mixins, ensuring they are re-downloaded for both local and remote configs while preserving cached mixins as a fallback on download failure, and wires this through load options, config handling, CLI flags, plus tests, logging, file mode fixes, and docs/help updates. Sequence diagram for extended no-cache behavior for remote mixinssequenceDiagram
actor User
participant CLI as Main
participant Loader as LoadWithContext
participant Cfg as Config
participant Mixin as RemoteMixin
User->>CLI: run lets --no-cache
CLI->>Loader: LoadWithContext(..., WithNoCache)
Loader->>Cfg: NewConfig(...)
Loader->>Cfg: SetDownloadOptions(ctx, progress, noCache=true)
Cfg->>Cfg: readMixin(mixin)
Cfg->>Mixin: tryRead()
alt noCache is true
Note over Cfg,Mixin: cached read skipped on first attempt
end
alt data is nil
Cfg->>Mixin: download(context, progress)
alt download succeeds
Cfg->>Mixin: persist(data)
else download fails and noCache is true
Cfg->>Mixin: tryRead()
alt cachedData exists
Note over Cfg,Mixin: use cached mixin as fallback
else no cachedData
Note over Cfg,Mixin: return download error
end
end
end
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Contributor
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- In
config.Config.readMixinyou introduce a direct dependency onlogrus; consider routing this warning through the existing logging abstraction (or adding one if needed) so the config package doesn’t hard‑depend on a specific logging implementation.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- In `config.Config.readMixin` you introduce a direct dependency on `logrus`; consider routing this warning through the existing logging abstraction (or adding one if needed) so the config package doesn’t hard‑depend on a specific logging implementation.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
This reverts commit b599438.
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.
Summary
Tests
Summary by Sourcery
Extend no-cache behavior to remote mixins and make remote mixin caching more robust when loading configs.
Bug Fixes:
Enhancements:
Documentation:
Tests: