Merge pull request #43217 from SEJeff/fix-spelling-tyop

Automatic merge from submit-queue

Fix spelling of the word successfully

A serious business project like kubernetes necessitates serious business logs.
This commit is contained in:
Kubernetes Submit Queue 2017-03-24 10:26:54 -07:00 committed by GitHub
commit 1aff24cb53
4 changed files with 4 additions and 4 deletions

View File

@ -201,7 +201,7 @@ func (le *LeaderElector) renew() {
le.maybeReportTransition()
desc := le.config.Lock.Describe()
if err == nil {
glog.V(4).Infof("succesfully renewed lease %v", desc)
glog.V(4).Infof("successfully renewed lease %v", desc)
return
}
le.config.Lock.RecordEvent("stopped leading")

View File

@ -637,7 +637,7 @@ func (dc *DeploymentController) syncDeployment(key string) error {
return err
}
// So far the cleanup policy was executed once a deployment was paused, scaled up/down, or it
// succesfully completed deploying a replica set. Decouple it from the strategies and have it
// successfully completed deploying a replica set. Decouple it from the strategies and have it
// run almost unconditionally - cleanupDeployment is safe by default.
dc.cleanupDeployment(oldRSs, d)
}

View File

@ -422,6 +422,6 @@ func (ssc *StatefulSetController) syncStatefulSet(set *apps.StatefulSet, pods []
glog.V(2).Infof("Error syncing StatefulSet %s/%s with %d pods : %s", set.Namespace, set.Name, err)
return err
}
glog.V(2).Infof("Succesfully synced StatefulSet %s/%s successful", set.Namespace, set.Name)
glog.V(2).Infof("Successfully synced StatefulSet %s/%s successful", set.Namespace, set.Name)
return nil
}

View File

@ -148,7 +148,7 @@ func (m *sioMgr) AttachVolume(volName string) (string, error) {
glog.Error(log("failed while waiting for device to attach: %v", err))
return "", err
}
glog.V(4).Info(log("volume %s attached succesfully as %s to instance %s", volName, device, iid))
glog.V(4).Info(log("volume %s attached successfully as %s to instance %s", volName, device, iid))
return device, nil
}