From 52e008a2307046c845d608b8186e62246e38423a Mon Sep 17 00:00:00 2001 From: Dan Harris Date: Fri, 20 Oct 2023 16:49:48 -0400 Subject: [PATCH] Fix condition --- object_store/src/aws/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object_store/src/aws/mod.rs b/object_store/src/aws/mod.rs index 38884532eb09..fe3b41115034 100644 --- a/object_store/src/aws/mod.rs +++ b/object_store/src/aws/mod.rs @@ -223,7 +223,7 @@ impl ObjectStore for AmazonS3 { bytes: Bytes, options: PutOptions, ) -> Result<()> { - if !options.tags.is_empty() { + if options.tags.is_empty() { self.client .put_request(location, Some(bytes), &(), None) .await?;