Fix e2d tests w/ http prefix in kube client init

pull/6/head
Joe Beda 2014-08-27 16:53:57 -07:00
parent 0766e7a411
commit 2ea2c55d16
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func main() {
} }
controllerManager := controller.NewReplicationManager( controllerManager := controller.NewReplicationManager(
client.New(*master, nil)) client.New("http://"+*master, nil))
controllerManager.Run(10 * time.Second) controllerManager.Run(10 * time.Second)
select {} select {}