Skip to content

Commit

Permalink
Increase wait time before retry
Browse files Browse the repository at this point in the history
  • Loading branch information
igolaizola committed Aug 1, 2024
1 parent d995406 commit ff6d2bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/runway/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ func (c *Client) log(format string, args ...interface{}) {
}

var backoff = []time.Duration{
30 * time.Second,
1 * time.Minute,
2 * time.Minute,
5 * time.Minute,
9 * time.Minute,
27 * time.Minute,
}

func (c *Client) do(ctx context.Context, method, path string, in, out any) ([]byte, error) {
Expand Down

0 comments on commit ff6d2bf

Please sign in to comment.