From b5d29214575891e3963af8efdce15f1920113fea Mon Sep 17 00:00:00 2001 From: Satyam Singh Date: Tue, 21 Mar 2023 18:55:31 +0530 Subject: [PATCH] Fix --- object_store/src/aws/mod.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/object_store/src/aws/mod.rs b/object_store/src/aws/mod.rs index 3f4975f26370..7d10f3728238 100644 --- a/object_store/src/aws/mod.rs +++ b/object_store/src/aws/mod.rs @@ -103,9 +103,7 @@ enum Error { source: std::num::ParseIntError, }, - #[snafu(display( - "Invalid Checksum algorithm, valid values are sha256, sha1, crc32, crc32c" - ))] + #[snafu(display("Invalid Checksum algorithm"))] InvalidChecksumAlgorithm, #[snafu(display("Missing region"))] @@ -1290,7 +1288,7 @@ mod tests { let integration = config.build().unwrap(); put_get_delete_list_opts(&integration, is_local).await; - // run integration test with unsigned payload enabled + // run integration test with checksum set to sha256 let config = maybe_skip_integration!().with_checksum_algorithm(Checksum::SHA256); let is_local = matches!(&config.endpoint, Some(e) if e.starts_with("http://")); let integration = config.build().unwrap();