1
0
mirror of https://github.com/rancher/os.git synced 2025-09-16 06:59:12 +00:00

Merge pull request #981 from joshwget/fix-rancher-log

Fix 'rancher.log'
This commit is contained in:
Darren Shepherd
2016-06-06 17:48:40 -07:00
5 changed files with 10 additions and 2 deletions

View File

@@ -51,7 +51,9 @@ func RunServiceSet(name string, cfg *config.CloudConfig, configs map[string]*com
if err != nil {
return nil, err
}
return p, p.Up(context.Background(), options.Up{})
return p, p.Up(context.Background(), options.Up{
Log: cfg.Rancher.Log,
})
}
func GetProject(cfg *config.CloudConfig, networkingAvailable bool) (*project.Project, error) {