Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/sdk/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just for fetching tags right? it is hard to believe that fetching tags can take more than 30seconds, are those are just refs in the .git folder?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is..aws-sdk-go-v2 has 885 tags to be fetched...maybe moving forward we can rethink this...

)

func ContextWithSigterm(ctx context.Context) (context.Context, context.CancelFunc) {
Expand Down