Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
facilitator: fix cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeoghegan committed Feb 16, 2021
1 parent 3d18458 commit d23c14f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion facilitator/src/aws_credentials.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ async fn chain_provider_credentials(
}
match provider.webidp_provider.credentials().await {
Ok(creds) => return Ok(creds),
Err(err) => info!("failed to obtain credentials from webidp provider: {:?}", err),
Err(err) => info!(
"failed to obtain credentials from webidp provider: {:?}",
err
),
}
if let Ok(creds) = provider.instance_metadata_provider.credentials().await {
return Ok(creds);
Expand Down

0 comments on commit d23c14f

Please sign in to comment.