Merge pull request #1352 from justinsb/fix_fmt_string

Fix Fatalf format string
This commit is contained in:
k8s-ci-robot 2018-10-25 09:59:21 -07:00 committed by GitHub
commit 3880db92f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func main() {
kubeClient, vpaClient := createKubeClients() kubeClient, vpaClient := createKubeClients()
updater, err := updater.NewUpdater(kubeClient, vpaClient, *minReplicas, *evictionToleranceFraction, vpa_api_util.NewCappingRecommendationProcessor(), nil) updater, err := updater.NewUpdater(kubeClient, vpaClient, *minReplicas, *evictionToleranceFraction, vpa_api_util.NewCappingRecommendationProcessor(), nil)
if err != nil { if err != nil {
glog.Fatalf("Failed to create updater: %v") glog.Fatalf("Failed to create updater: %v", err)
} }
ticker := time.Tick(*updaterInterval) ticker := time.Tick(*updaterInterval)
for range ticker { for range ticker {