-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: do not delete expr tag tmpl values. Fixes #6909 #6921
Conversation
Signed-off-by: Alex Collins <alex_collins@intuit.com>
Codecov Report
@@ Coverage Diff @@
## master #6921 +/- ##
==========================================
- Coverage 48.53% 48.48% -0.06%
==========================================
Files 265 265
Lines 19259 19259
==========================================
- Hits 9348 9337 -11
- Misses 8860 8873 +13
+ Partials 1051 1049 -2
Continue to review full report at Codecov.
|
@@ -8,20 +8,26 @@ import ( | |||
) | |||
|
|||
func TestExpand(t *testing.T) { | |||
for i := 0; i < 100; i++ { // loop 100 times, because map ordering is not determisitic | |||
for i := 0; i < 1; i++ { // loop 100 times, because map ordering is not determisitic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mistake here? Either remove the loop + comments or change back to i < 100
? @alexec
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ops.
…j#6921) Signed-off-by: Alex Collins <alex_collins@intuit.com> Signed-off-by: bjenuhb <basanth_jenuhb@intuit.com>
…j#6921) Signed-off-by: Alex Collins <alex_collins@intuit.com> Signed-off-by: kriti-sc <kathuriakriti1@gmail.com>
* fix: do not delete expr tag tmpl values. Fixes argoproj#6909 (argoproj#6921) Signed-off-by: Alex Collins <alex_collins@intuit.com> * update image registry * result of `make pre-commit -B` * Retrigger CI pipeline * result of `make codegen -B STATIC_FILES=false` Co-authored-by: Alex Collins <alexec@users.noreply.github.com> Co-authored-by: Ilya Gorban <ilyagorban@Ilyas-MacBook-Pro.local>
Signed-off-by: Alex Collins alex_collins@intuit.com
Fixes #6909