From e899bb80cc5ee26642acf3d06b1c0ea980dc6079 Mon Sep 17 00:00:00 2001 From: Malte Poll Date: Fri, 22 Sep 2023 11:39:59 +0200 Subject: [PATCH] image: increase AWS image upload wait time to 30 minutes --- internal/osimage/aws/awsupload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/osimage/aws/awsupload.go b/internal/osimage/aws/awsupload.go index 388dcc4145..d5d097f472 100644 --- a/internal/osimage/aws/awsupload.go +++ b/internal/osimage/aws/awsupload.go @@ -593,7 +593,7 @@ func toPtr[T any](v T) *T { const ( waitInterval = 15 * time.Second - maxWait = 15 * time.Minute + maxWait = 30 * time.Minute timestampFormat = "20060102150405" )