e2e: Change the default runner rolling-update interval from 10s to 60s to let the runners actually get jobs assigned by GitHub Actions

This commit is contained in:
Yusuke Kuoka
2022-08-27 07:11:17 +00:00
parent 915739b972
commit e0a7be253e

View File

@@ -225,7 +225,7 @@ func TestE2E(t *testing.T) {
t.Logf("Stopping the continuous rolling-update of runners")
}
default:
time.Sleep(10 * time.Second)
time.Sleep(60 * time.Second)
t.Run(fmt.Sprintf("update runners attempt %d", i), func(t *testing.T) {
env.deploy(t, RunnerSets, testID, fmt.Sprintf("ROLLING_UPDATE_PHASE=%d", i))