Conversation
Runs on pushes to main and on PRs, with the stable toolchain and cargo caching. Clippy denies warnings, so the two existing warnings are fixed here: the unused tokio::task import and the unused `mut` on retries (both leftovers of the disabled concurrency code). Closes #9 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Aspzs7ajR1EdmAqCP35tc6
This was referenced Jul 22, 2026
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.
Closes #9
Summary
.github/workflows/ci.ymlrunning on pushes tomainand on all PRs:cargo build --verbose,cargo test --verbose, andcargo clippy --all-targets -- -D warnings, on the stable toolchain withSwatinem/rust-cachefor speed.mainare fixed here so CI starts green: removed the unusedtokio::taskimport and the unusedmutonretries(both leftovers of the disabled concurrency code). Note these lines are also touched by Fix retry loop in main(): bounded retries, backoff, error classification #7/Make message fetching concurrent with rate limiting and deadlock-free SQLite writes #8, so whichever merges second will have a trivial conflict.Testing
-D warnings.