Skip to content

Commit

Permalink
Merge pull request #171 from zdtsw/main
Browse files Browse the repository at this point in the history
Fix: update template name to be more unique
  • Loading branch information
HumairAK authored Jun 22, 2023
2 parents 5e4bbc7 + 2620f5e commit c67783f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/config/templating.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func templateSource(r io.Reader, context interface{}) mf.Source {
if err != nil {
panic(err)
}
t, err := template.New("foo").Parse(string(b))
t, err := template.New("manifestTemplateDSP").Parse(string(b))
if err != nil {
panic(err)
}
Expand Down

0 comments on commit c67783f

Please sign in to comment.