Skip to content

Commit

Permalink
Merge pull request #983 from kaleido-io/bump-poll-timeout
Browse files Browse the repository at this point in the history
bump reset polling to 60seconds
  • Loading branch information
awrichar authored Aug 18, 2022
2 parents 71498e9 + 5811965 commit d23766c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var WidgetSchemaJSON = []byte(`{
func PollForUp(t *testing.T, client *client.FireFlyClient) {
var resp *resty.Response
var err error
for i := 0; i < 5; i++ {
for i := 0; i < 12; i++ {
_, resp, err = client.GetStatus()
if err == nil && resp.StatusCode() == 200 {
break
Expand Down

0 comments on commit d23766c

Please sign in to comment.