chore: address Rust 1.87.0 clippy lints (#8130)

This commit is contained in:
Gaurav Rawat
2025-05-27 15:31:22 +05:30
committed by GitHub
parent a654695008
commit fab9f5eee5
6 changed files with 11 additions and 10 deletions

View File

@ -45,6 +45,6 @@ async fn main() -> ApplicationResult<()> {
let _ = server.await;
Err(error_stack::Report::from(ApplicationError::from(
std::io::Error::new(std::io::ErrorKind::Other, "Server shut down"),
std::io::Error::other("Server shut down"),
)))
}

View File

@ -2008,9 +2008,11 @@ pub fn decide_payment_method_retrieval_action(
)
};
should_retry_with_pan
.then_some(VaultFetchAction::FetchCardDetailsFromLocker)
.unwrap_or_else(standard_flow)
if should_retry_with_pan {
VaultFetchAction::FetchCardDetailsFromLocker
} else {
standard_flow()
}
}
pub fn determine_standard_vault_action(