Skip to content

Commit

Permalink
Merge pull request #116 from azhi/patch-1
Browse files Browse the repository at this point in the history
Fix typo in helm release error message
  • Loading branch information
rusenask authored Nov 28, 2017
2 parents fc85666 + 0320882 commit ce00b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ func (p *Provider) applyPlans(plans []*UpdatePlan) error {

p.sender.Send(types.EventNotification{
Name: "update release",
Message: fmt.Sprintf("Release update feailed %s/%s %s->%s (%s), error: %s", plan.Namespace, plan.Name, plan.CurrentVersion, plan.NewVersion, strings.Join(mapToSlice(plan.Values), ", "), err),
Message: fmt.Sprintf("Release update failed %s/%s %s->%s (%s), error: %s", plan.Namespace, plan.Name, plan.CurrentVersion, plan.NewVersion, strings.Join(mapToSlice(plan.Values), ", "), err),
CreatedAt: time.Now(),
Type: types.NotificationReleaseUpdate,
Level: types.LevelError,
Expand Down

0 comments on commit ce00b25

Please sign in to comment.