🎨 Update S3 default timeout to 60s

This commit is contained in:
Daniel 2024-04-29 23:26:55 +08:00
parent c0deaf5727
commit 04764e7546
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -182,7 +182,7 @@ func GetChildDocDepth(treeAbsPath string) (ret int) {
func NormalizeTimeout(timeout int) int { func NormalizeTimeout(timeout int) int {
if 7 > timeout { if 7 > timeout {
if 1 > timeout { if 1 > timeout {
return 30 return 60
} }
return 7 return 7
} }