fix(test): handle serve() Result in live_socket_check (unbreak clippy on main) #78
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix/serve-result-clippy"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Unblocks main —
cargo clippy --workspace --all-targets -- -D warningsis currently RED.PR #75 made
socket::servereturnio::Resultbut missed the 4 call sites incolibri-client/tests/live_socket_check.rs, leaving bareserve(...).await;on a#[must_use]Result →unused_must_use. Addedlet _ =(clippy's suggestion); these are test server tasks that run until shutdown.This is the CRITICAL item from the PR #77 audit — fixed here rather than deferred to a handoff.
Checks: clippy --workspace --all-targets -D warnings clean; fmt clean.
🤖 Generated with Claude Code