fix call to Fatal() vs Fatalf()

This commit is contained in:
Tim Hockin 2015-01-03 20:51:14 -08:00
parent 297c8d1d5a
commit a57976b46d

View File

@ -173,7 +173,7 @@ func startComponents(manifestURL string) (apiServerURL string) {
schedulerConfigFactory := factory.NewConfigFactory(cl)
schedulerConfig, err := schedulerConfigFactory.Create()
if err != nil {
glog.Fatal("Couldn't create scheduler config: %v", err)
glog.Fatalf("Couldn't create scheduler config: %v", err)
}
scheduler.New(schedulerConfig).Run()