You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(linux): resolve clippy unused-var and as_*-convention lints
Linux CI clippy --all-targets -D warnings (which lints cfg(linux) and test code the macOS host cannot) flagged two issues in main.rs:
- secret_backend bound but unused in the daemon flow (the --status command re-probes the backend itself) -> rename to _secret_backend, matching the non-Linux branch
- MockSecretStore::as_arc_dyn(self) takes self by value -> rename to into_arc_dyn per the as_*/into_ self-convention (clippy::wrong_self_convention)
Verified locally with cargo clippy --workspace --all-targets -- -D warnings (the into_arc_dyn fix is in cfg(test) code, so it compiles on macOS) and cargo fmt --check.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 commit comments