Skip to content

Commit

Permalink
Correct restore data log message (#5607)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavannd1 authored and Ilya Kislenko committed May 8, 2019
1 parent d3796a1 commit 851f93c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/function/restore_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func restoreDataPodFunc(cli kubernetes.Interface, tp param.TemplateParams, names
format.Log(pod.Name, pod.Spec.Containers[0].Name, stdout)
format.Log(pod.Name, pod.Spec.Containers[0].Name, stderr)
if err != nil {
return nil, errors.Wrapf(err, "Failed to create and upload backup")
return nil, errors.Wrapf(err, "Failed to restore backup")
}
out, err := parseLogAndCreateOutput(stdout)
return out, errors.Wrap(err, "Failed to parse phase output")
Expand Down

0 comments on commit 851f93c

Please sign in to comment.