feat: update http retry

This commit is contained in:
2025-12-23 21:12:44 +08:00
parent e0904f5bfb
commit 28295f825b

View File

@@ -23,9 +23,9 @@ type RetryConfig struct {
// DefaultRetryConfig 默认重试配置
var DefaultRetryConfig = RetryConfig{
MaxRetries: 2,
MaxRetries: 1,
InitialInterval: 100 * time.Millisecond,
MaxInterval: 5 * time.Second,
MaxInterval: 30 * time.Second,
SkipTLSVerify: true,
}