Skip to content

Commit 494c771

Browse files
committed
test: fix clustertest timeout
Sometimes this build takes slightly longer that 60 seconds in CI. This change fixes the sporadic errors we're getting right now.
1 parent fe0b559 commit 494c771

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clustertest/utils_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
)
2323

2424
func buildImage() {
25-
ctx, cancel := context.WithTimeout(context.Background(), 60*time.Second)
25+
ctx, cancel := context.WithTimeout(context.Background(), 300*time.Second)
2626
defer cancel()
2727

2828
log.Println("building control-plane image")

0 commit comments

Comments
 (0)