Skip to content

Commit 3840e40

Browse files
authored
Bypass inconsistent SSM repository state using a stable version suffix (#2028)
1 parent 60c3f86 commit 3840e40

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

e2e/nomostest/gitproviders/git-provider.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ func NewGitProvider(t testing.NTB, provider, clusterName string, logger *testlog
7474

7575
projectNumber := strings.Split(string(out), "\n")[0]
7676

77-
return newSSMClient(clusterName, shell, projectNumber)
77+
// Add suffix for repoPrefix to fix SSM testgrid failure
78+
return newSSMClient(clusterName+"-v2", shell, projectNumber)
7879
default:
7980
return &LocalProvider{}
8081
}

0 commit comments

Comments
 (0)