Skip to content

Commit

Permalink
add fix to xslt transformation (#1514)
Browse files Browse the repository at this point in the history
  • Loading branch information
odacremolbap committed Oct 17, 2023
1 parent 7b4e02e commit ce2f5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/flow/adapter/xslttransformation/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ type envAccessor struct {

func (e *envAccessor) validate() error {
if !e.AllowXSLTOverride && e.XSLT == "" {
return errors.New("if XSLT cannot be overriden by CloudEvent payloads, configured XSLT cannot be empty")
return errors.New("if XSLT cannot be overridden by CloudEvent payloads, configured XSLT cannot be empty")
}
return nil
}

0 comments on commit ce2f5fa

Please sign in to comment.