From 49a32e72777469d874a917cf1da21809d988dccc Mon Sep 17 00:00:00 2001 From: michaelhtm <98621731+michaelhtm@users.noreply.github.com> Date: Wed, 2 Jul 2025 10:03:05 -0700 Subject: [PATCH] chore: increase `git fetch` default timeout to 180s The timeout being 30 seconds was causing a timeout error. Moving forward we may want to make certain changes to make the fetch faster --- pkg/sdk/repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/sdk/repo.go b/pkg/sdk/repo.go index 9e2f90d6..9ba28196 100644 --- a/pkg/sdk/repo.go +++ b/pkg/sdk/repo.go @@ -32,7 +32,7 @@ import ( const ( sdkRepoURLV2 = "https://github.com/aws/aws-sdk-go-v2" defaultGitCloneTimeout = 180 * time.Second - defaultGitFetchTimeout = 30 * time.Second + defaultGitFetchTimeout = 180 * time.Second ) func ContextWithSigterm(ctx context.Context) (context.Context, context.CancelFunc) {