Skip to content

Lint

Lint #536

Triggered via merge group October 25, 2025 08:16
Status Success
Total duration 58s
Artifacts

lint.yml

on: merge_group
Fit to window
Zoom out
Zoom in

Annotations

1 error
clippy: actix-rt/src/arbiter.rs#L169
[clippy] reported by reviewdog 🐶 error: variables can be used directly in the `format!` string --> actix-rt/src/arbiter.rs:169:20 | 169 | let name = format!("actix-rt|system:{}|arbiter:{}", system_id, arb_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-D clippy::uninlined-format-args` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]` help: change this to | 169 - let name = format!("actix-rt|system:{}|arbiter:{}", system_id, arb_id); 169 + let name = format!("actix-rt|system:{system_id}|arbiter:{arb_id}"); | Raw Output: actix-rt/src/arbiter.rs:169:20:e:error: variables can be used directly in the `format!` string --> actix-rt/src/arbiter.rs:169:20 | 169 | let name = format!("actix-rt|system:{}|arbiter:{}", system_id, arb_id); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-D clippy::uninlined-format-args` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::uninlined_format_args)]` help: change this to | 169 - let name = format!("actix-rt|system:{}|arbiter:{}", system_id, arb_id); 169 + let name = format!("actix-rt|system:{system_id}|arbiter:{arb_id}"); | __END__