We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e6b50 commit c8cea47Copy full SHA for c8cea47
src/client/auth/aws.rs
@@ -200,7 +200,7 @@ impl AwsCredential {
200
http_client: &HttpClient,
201
) -> Result<Self> {
202
let mut file = File::open(&token_file).map_err(|_| {
203
- Error::authentication_error(MECH_NAME, &format!("could not open identity token file",))
+ Error::authentication_error(MECH_NAME, "could not open identity token file")
204
})?;
205
let mut buffer = Vec::<u8>::new();
206
file.read_to_end(&mut buffer).map_err(|_| {
0 commit comments