mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 19:31:35 +00:00
Increase object storage signature expiry to 15 seconds
This commit is contained in:
parent
182bd1d4a2
commit
4be2eb67d1
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ impl ObjectStore {
|
||||||
rusty_s3::Method::Delete => awc::http::Method::DELETE,
|
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());
|
let req = self.client.request(method, url.as_str());
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue