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 54228ec commit 414abd8Copy full SHA for 414abd8
openapi/waiter.go
@@ -53,7 +53,7 @@ func GetWaiter() *Waiter {
53
54
func (a *Waiter) CallWith(invoker Invoker) (string, error) {
55
//
56
- // timeout is 1-180 seconds
+ // timeout is 1-600 seconds, default is 180
57
timeout := time.Duration(time.Second * 180)
58
if s, ok := WaiterFlag.GetFieldValue("timeout"); ok {
59
if n, err := strconv.Atoi(s); err == nil {
@@ -66,7 +66,7 @@ func (a *Waiter) CallWith(invoker Invoker) (string, error) {
66
}
67
68
69
- // interval is 2-10 seconds
+ // interval is 2-10 seconds, default is 5
70
interval := time.Duration(time.Second * 5)
71
if s, ok := WaiterFlag.GetFieldValue("interval"); ok {
72
0 commit comments