Commit a57976b4 authored by Tim Hockin's avatar Tim Hockin

fix call to Fatal() vs Fatalf()

parent 297c8d1d
...@@ -173,7 +173,7 @@ func startComponents(manifestURL string) (apiServerURL string) { ...@@ -173,7 +173,7 @@ func startComponents(manifestURL string) (apiServerURL string) {
schedulerConfigFactory := factory.NewConfigFactory(cl) schedulerConfigFactory := factory.NewConfigFactory(cl)
schedulerConfig, err := schedulerConfigFactory.Create() schedulerConfig, err := schedulerConfigFactory.Create()
if err != nil { 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() scheduler.New(schedulerConfig).Run()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment