From a57976b46d3791b580f4c0099c007b58868bb5bf Mon Sep 17 00:00:00 2001 From: Tim Hockin Date: Sat, 3 Jan 2015 20:51:14 -0800 Subject: [PATCH] fix call to Fatal() vs Fatalf() --- cmd/integration/integration.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/integration/integration.go b/cmd/integration/integration.go index 7047123ec56..f96b8c94c4c 100644 --- a/cmd/integration/integration.go +++ b/cmd/integration/integration.go @@ -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()