Merge pull request #1068 from jbeda/fix-e2e

Fix e2e tests w/ http prefix in kube client init
This commit is contained in:
Daniel Smith 2014-08-27 16:56:09 -07:00
commit 1319309174

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 {}