build(deps): bump taiki-e/install-action from 2.33.26 to 2.33.34 #3380
GitHub Actions / clippy
succeeded
May 27, 2024 in 0s
reviewdog [clippy] report
reported by reviewdog 🐶
Findings (0)
Filtered Findings (1)
awc/src/client/connector.rs|1083 col 68| error: initializer for thread_local
value can be made const
--> awc/src/client/connector.rs:1083:68
|
1083 | static TRUST_DNS_RESOLVER: RefCell<Option> = RefCell::new(None);
| ^^^^^^^^^^^^^^^^^^ help: replace with: const { RefCell::new(None) }
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#thread_local_initializer_can_be_made_const
= note: -D clippy::thread-local-initializer-can-be-made-const
implied by -D warnings
= help: to override -D warnings
add #[allow(clippy::thread_local_initializer_can_be_made_const)]
Loading