fix: 重试次数改为1

This commit is contained in:
余泓铮
2025-06-30 18:54:11 +08:00
parent 364bf0172d
commit 401d176a95

View File

@@ -46,7 +46,7 @@ func NewDriverSession() *DriverSession {
client: &http.Client{
Timeout: timeout,
},
maxRetry: 5,
maxRetry: 1,
}
session.Reset()
return session