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
4 changed files with 4 additions and 4 deletions

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
}