Increase object storage signature expiry to 15 seconds

This commit is contained in:
asonix 2023-07-10 16:28:51 -05:00
parent 182bd1d4a2
commit 4be2eb67d1
1 changed files with 1 additions and 1 deletions

View File

@ -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());