From 6d481cef021a33aa0e5d6591862b8c7ed39ce323 Mon Sep 17 00:00:00 2001 From: geetanshjuneja Date: Fri, 10 Jan 2025 16:42:26 +0000 Subject: [PATCH] fmt --- core/src/services/azblob/core.rs | 4 ++-- core/src/services/gcs/core.rs | 4 ++-- core/src/services/oss/core.rs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/services/azblob/core.rs b/core/src/services/azblob/core.rs index 5f1c59132fb9..b080f098084f 100644 --- a/core/src/services/azblob/core.rs +++ b/core/src/services/azblob/core.rs @@ -30,8 +30,8 @@ use http::header::CONTENT_LENGTH; use http::header::CONTENT_TYPE; use http::header::IF_MATCH; use http::header::IF_MODIFIED_SINCE; -use http::header::IF_UNMODIFIED_SINCE; use http::header::IF_NONE_MATCH; +use http::header::IF_UNMODIFIED_SINCE; use http::HeaderValue; use http::Request; use http::Response; @@ -216,7 +216,7 @@ impl AzblobCore { format_datetime_into_http_date(if_modified_since), ); } - + if let Some(if_unmodified_since) = args.if_unmodified_since() { req = req.header( IF_UNMODIFIED_SINCE, diff --git a/core/src/services/gcs/core.rs b/core/src/services/gcs/core.rs index e1c573d5e0a5..7a7ef5992fde 100644 --- a/core/src/services/gcs/core.rs +++ b/core/src/services/gcs/core.rs @@ -209,7 +209,7 @@ impl GcsCore { format_datetime_into_http_date(if_modified_since), ); } - + if let Some(if_unmodified_since) = args.if_unmodified_since() { req = req.header( IF_UNMODIFIED_SINCE, @@ -243,7 +243,7 @@ impl GcsCore { format_datetime_into_http_date(if_modified_since), ); } - + if let Some(if_unmodified_since) = args.if_unmodified_since() { req = req.header( IF_UNMODIFIED_SINCE, diff --git a/core/src/services/oss/core.rs b/core/src/services/oss/core.rs index a85d2df699c2..2467159d4c6d 100644 --- a/core/src/services/oss/core.rs +++ b/core/src/services/oss/core.rs @@ -351,7 +351,7 @@ impl OssCore { format_datetime_into_http_date(if_modified_since), ); } - + if let Some(if_unmodified_since) = args.if_unmodified_since() { req = req.header( IF_UNMODIFIED_SINCE,