Skip to content

chore(deps): update ghcr.io/sksat/cargo-chef-docker docker tag to v1.84.0 #184

chore(deps): update ghcr.io/sksat/cargo-chef-docker docker tag to v1.84.0

chore(deps): update ghcr.io/sksat/cargo-chef-docker docker tag to v1.84.0 #184

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Dec 19, 2023 in 1s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.74.1 (a28077b28 2023-12-04)
  • cargo 1.74.1 (ecb9851af 2023-10-18)
  • clippy 0.1.74 (a28077b 2023-12-04)

Annotations

Check warning on line 21 in src/api.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this `MutexGuard` is held across an `await` point

warning: this `MutexGuard` is held across an `await` point
  --> src/api.rs:21:21
   |
21 |     let data = &mut data.unwrap();
   |                     ^^^^^^^^^^^^^
   |
   = help: consider using an async-aware `Mutex` type or ensuring the `MutexGuard` is dropped before calling await
note: these are all the `await` points this lock is held through
  --> src/api.rs:24:86
   |
24 |     let subdomain = subdomain::add(&data.api_client, &params.subdomain, &params.url).await;
   |                                                                                      ^^^^^
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_lock
   = note: `#[warn(clippy::await_holding_lock)]` on by default