Skip to content

Prevent inconsistencies between concurrent hash table and policy #2042

Prevent inconsistencies between concurrent hash table and policy

Prevent inconsistencies between concurrent hash table and policy #2042

GitHub Actions / clippy failed Nov 19, 2023 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.74.0 (79e9716c9 2023-11-13)
  • cargo 1.74.0 (ecb9851af 2023-10-18)
  • clippy 0.1.74 (79e9716 2023-11-13)

Annotations

Check failure on line 2724 in src/sync/cache.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

redundant redefinition of a binding

error: redundant redefinition of a binding
    --> src/sync/cache.rs:2724:13
     |
2724 |         let cache = Cache::builder()
     |             ^^^^^
...
2731 |         let cache = cache;
     |         ^^^^^^^^^^^^^^^^^^
     |
     = help: remove the redefinition of `cache`
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_locals

Check failure on line 3068 in src/future/cache.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

redundant redefinition of a binding

error: redundant redefinition of a binding
    --> src/future/cache.rs:3068:13
     |
3068 |         let cache = Cache::builder()
     |             ^^^^^
...
3075 |         let cache = cache;
     |         ^^^^^^^^^^^^^^^^^^
     |
     = help: remove the redefinition of `cache`
     = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_locals
     = note: `-D clippy::redundant-locals` implied by `-D warnings`
     = help: to override `-D warnings` add `#[allow(clippy::redundant_locals)]`