Skip to content

Commit

Permalink
Fix shovel parsing log line (#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunyiLyu authored Jun 12, 2023
1 parent 85a0693 commit edcbf44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/shovel_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (r *ShovelReconciler) getUris(ctx context.Context, shovel *topology.Shovel)

destUri, ok := secret.Data["destUri"]
if !ok {
return "", "", fmt.Errorf("could not find key 'srcUri' in secret %s", secret.Name)
return "", "", fmt.Errorf("could not find key 'destUri' in secret %s", secret.Name)
}

return string(srcUri), string(destUri), nil
Expand Down

0 comments on commit edcbf44

Please sign in to comment.