mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
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:
commit
1aff24cb53
@ -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")
|
||||
|
@ -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)
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
@ -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
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user