Skip to content

Commit

Permalink
fix the error message
Browse files Browse the repository at this point in the history
  • Loading branch information
vaikas committed Feb 5, 2020
1 parent 3fedccd commit 7f43b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/apis/eventing/v1beta1/trigger_conversion.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ func (source *Trigger) ConvertUp(ctx context.Context, sink apis.Convertible) err

// ConvertDown implements apis.Convertible
func (sink *Trigger) ConvertDown(ctx context.Context, source apis.Convertible) error {
return fmt.Errorf("v1 is the highest known version, got: %T", source)
return fmt.Errorf("v1beta1 is the highest known version, got: %T", source)
}

0 comments on commit 7f43b7a

Please sign in to comment.