We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9332bd5 commit 5f60478Copy full SHA for 5f60478
plugins/wasm-go/extensions/ai-proxy/README.md
@@ -94,7 +94,7 @@ custom-setting会遵循如下表格,根据`name`和协议来替换对应的字
94
|------------------|--------|-----------------|-------|-------------|
95
| enabled | bool | 非必填 | false | 是否启用失败请求重试 |
96
| maxRetries | int | 非必填 | 1 | 最大重试次数 |
97
-| retryTimeout | int | 非必填 | 5000 | 重试超时时间,单位毫秒 |
+| retryTimeout | int | 非必填 | 30000 | 重试超时时间,单位毫秒 |
98
99
### 提供商特有配置
100
plugins/wasm-go/extensions/ai-proxy/provider/retry.go
@@ -30,7 +30,7 @@ func (r *retryOnFailure) FromJson(json gjson.Result) {
30
}
31
r.retryTimeout = json.Get("retryTimeout").Int()
32
if r.retryTimeout == 0 {
33
- r.retryTimeout = 5000
+ r.retryTimeout = 30 * 1000
34
35
36
0 commit comments