From 04764e75460c27a454efe099432a2f5575afa592 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Mon, 29 Apr 2024 23:26:55 +0800 Subject: [PATCH] :art: Update S3 default timeout to 60s --- kernel/util/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/util/path.go b/kernel/util/path.go index 2dae5fc4a..3561c8f1a 100644 --- a/kernel/util/path.go +++ b/kernel/util/path.go @@ -182,7 +182,7 @@ func GetChildDocDepth(treeAbsPath string) (ret int) { func NormalizeTimeout(timeout int) int { if 7 > timeout { if 1 > timeout { - return 30 + return 60 } return 7 }