Skip to content

Commit

Permalink
Increase timeout for checking the static server connection. (hashicor…
Browse files Browse the repository at this point in the history
…p#756)

The mesh gateway tests intermittently fail while checking this
connection with connection reset by peer errors. This could potentially
help.
  • Loading branch information
ndhanushkodi authored Jan 7, 2021
1 parent 62a90ff commit 387d3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/acceptance/framework/k8s/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func CheckStaticServerConnectionMultipleFailureMessages(
) {
t.Helper()

retrier := &retry.Timer{Timeout: 20 * time.Second, Wait: 500 * time.Millisecond}
retrier := &retry.Timer{Timeout: 80 * time.Second, Wait: 2 * time.Second}

args := []string{"exec", "deploy/" + deploymentName, "-c", deploymentName, "--", "curl", "-vvvsSf"}
args = append(args, curlArgs...)
Expand Down

0 comments on commit 387d3cd

Please sign in to comment.