Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
Signed-off-by: Hongchao Deng <[email protected]>
  • Loading branch information
hongchaodeng committed Jul 9, 2020
1 parent 7226b60 commit 5e7acd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/controller/v1alpha2/applicationconfiguration/render.go
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ func (r *components) handleDataInput(ctx context.Context, ins []v1alpha2.DataInp
for _, in := range ins {
s, ok := dag.Sources[in.ValueFrom.DataOutputName]
if !ok {
return nil, errors.New("DataOutput name doesn't exist")
return nil, fmt.Errorf("DataOutput name (%s) doesn't exist", in.ValueFrom.DataOutputName)
}
val, ready, err := r.checkSourceReady(ctx, s)
if err != nil {
Expand Down

0 comments on commit 5e7acd2

Please sign in to comment.