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 6d6c44d commit 9255e55Copy full SHA for 9255e55
iqshell/storage/bucket/list.go
@@ -201,13 +201,15 @@ func List(info ListApiInfo,
201
if workspace.IsCmdInterrupt() || // 取消
202
strings.Contains(lErr.Error(), "no such bucket") || // 空间不存在,直接结束
203
strings.Contains(lErr.Error(), "incorrect zone") || // 空间不正确
204
+ strings.Contains(lErr.Error(), "query region error") || // 查询空间错误
205
+ strings.Contains(lErr.Error(), "app/accesskey is not found") || // AK/SK 错误
206
strings.Contains(lErr.Error(), "invalid list limit") || // api v1 list limit
207
strings.Contains(lErr.Error(), "context canceled") { // 取消
208
break
209
}
210
211
retryCount++
- time.Sleep(time.Millisecond * 100)
212
+ time.Sleep(time.Millisecond * 500)
213
continue
214
215
0 commit comments