2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-11-09 22:14:59 +00:00

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

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