Skip to content

Commit

Permalink
chore: disable clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
olichwiruk committed Oct 26, 2023
1 parent 08bbd77 commit d664b27
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/startup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ pub fn run(
) -> Result<Server, std::io::Error> {
let server = HttpServer::new(move || {
// let auth = HttpAuthentication::bearer(validator);
#[allow(clippy::arc_with_non_send_sync)]
let facade_arc = Arc::new(std::sync::Mutex::new(oca_rs::Facade::new(
data_storage.clone(),
filesystem_storage.clone(),
Expand Down

0 comments on commit d664b27

Please sign in to comment.