Skip to content

Commit

Permalink
Fix flaky integration test for git job with polling disabled (#2514)
Browse files Browse the repository at this point in the history
That test relied on branch `renovate/golang.org-x-crypto-0.x`, which no
longer exists on `rancher/fleet`.
Instead, this now relies on an old release branch, which is both less
likely to be deleted and unlikely to be updated, since the corresponding
version is no longer maintained.
  • Loading branch information
weyfonk authored Jun 13, 2024
1 parent 2b72145 commit f470c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integrationtests/gitjob/controller/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const (
gitRepoNamespace = "default"
repo = "https://www.github.com/rancher/fleet"
commit = "9ca3a0ad308ed8bffa6602572e2a1343af9c3d2e"
stableCommitBranch = "renovate/golang.org-x-crypto-0.x"
stableCommit = "7b4c2b25a2da2160604bde2773ae8aa44ed481dd"
stableCommitBranch = "release/v0.6"
stableCommit = "26bdd9326b0238bb2fb743f863d9380c3c5d43e0"
)

var _ = Describe("GitJob controller", func() {
Expand Down

0 comments on commit f470c9e

Please sign in to comment.