Skip to content

Commit

Permalink
kola/tests/update: increase update timeout for arm64
Browse files Browse the repository at this point in the history
The 2 minute timeout was too short on arm64 qemu emulation for
completing the update.
Increase the timeout to 10 minutes.
  • Loading branch information
pothos committed Jul 14, 2021
1 parent d298454 commit db2470f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kola/tests/update/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func updateMachine(c cluster.TestCluster, m platform.Machine) {
c.Fatalf("Executing update_engine_client failed: %v: %v: %s", out, err, stderr)
}

err = util.WaitUntilReady(120*time.Second, 10*time.Second, func() (bool, error) {
err = util.WaitUntilReady(600*time.Second, 10*time.Second, func() (bool, error) {
envs, stderr, err := m.SSH("update_engine_client -status 2>/dev/null")
if err != nil {
return false, fmt.Errorf("checking status failed: %v: %s", err, stderr)
Expand Down

0 comments on commit db2470f

Please sign in to comment.