From 4be2eb67d125be566e022d7d15d23bfc7d2883c1 Mon Sep 17 00:00:00 2001 From: asonix Date: Mon, 10 Jul 2023 16:28:51 -0500 Subject: [PATCH] Increase object storage signature expiry to 15 seconds --- src/store/object_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/object_store.rs b/src/store/object_store.rs index 0674b47..1361edd 100644 --- a/src/store/object_store.rs +++ b/src/store/object_store.rs @@ -580,7 +580,7 @@ impl ObjectStore { rusty_s3::Method::Delete => awc::http::Method::DELETE, }; - let url = action.sign(Duration::from_secs(5)); + let url = action.sign(Duration::from_secs(15)); let req = self.client.request(method, url.as_str());