Skip to content

Commit

Permalink
🧹 Remove old resolver
Browse files Browse the repository at this point in the history
This removes the old resolver and uses the rewrite everywhere.

Should fix #1515
  • Loading branch information
jaym committed Dec 14, 2024
1 parent 7940e5e commit 1c0a4bd
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3,206 deletions.
6 changes: 1 addition & 5 deletions policy/bundle.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,7 @@ func BundleExecutionChecksum(ctx context.Context, policy *Policy, framework *Fra
// So far the checksum only includes the policy and the framework
// It does not change if any of the jobs changes, only if the policy or the framework changes
// To update the resolved policy, when we change how it is generated, change the incoporated version of the resolver
if IsNextGenResolver(ctx) {
res = res.Add(RESOLVER_VERSION_NG)
} else {
res = res.Add(RESOLVER_VERSION)
}
res = res.Add(RESOLVER_VERSION)

return res.String()
}
Expand Down
Loading

0 comments on commit 1c0a4bd

Please sign in to comment.