Skip to content

Commit

Permalink
fix typo succesSfully
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Clermont <[email protected]>
  • Loading branch information
jeanlucmongrain committed May 1, 2020
1 parent d8d35c4 commit ef2d57e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/controller/restore_session.go
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ func (c *StashController) setRestoreSessionRunning(restoreSession *api_v1beta1.R
restoreSession,
core.EventTypeNormal,
eventer.EventReasonRestoreJobCreated,
fmt.Sprintf("restore job has been created succesfully for RestoreSession %s/%s", restoreSession.Namespace, restoreSession.Name),
fmt.Sprintf("restore job has been created successfully for RestoreSession %s/%s", restoreSession.Namespace, restoreSession.Name),
)

return err
Expand Down Expand Up @@ -582,7 +582,7 @@ func (c *StashController) setRestoreSessionSucceeded(restoreSession *api_v1beta1
restoreSession,
core.EventTypeNormal,
eventer.EventReasonRestoreSessionSucceeded,
fmt.Sprintf("restore has been completed succesfully for RestoreSession %s/%s", restoreSession.Namespace, restoreSession.Name),
fmt.Sprintf("restore has been completed successfully for RestoreSession %s/%s", restoreSession.Namespace, restoreSession.Name),
)
if err != nil {
log.Errorf("failed to write event in RestoreSession %s/%s. Reason: %v", restoreSession.Namespace, restoreSession.Name, err)
Expand Down

0 comments on commit ef2d57e

Please sign in to comment.