1
0
mirror of https://github.com/rancher/os.git synced 2025-09-20 01:54:53 +00:00

Merge pull request #1079 from joshwget/log-upgrade-once

Only log once during upgrade
This commit is contained in:
Darren Shepherd
2016-06-30 21:50:13 -07:00
committed by GitHub

View File

@@ -244,9 +244,7 @@ func startUpgradeContainer(image string, stage, force, reboot, kexec bool, upgra
return err return err
} }
if err := container.Up(context.Background(), options.Up{ if err := container.Up(context.Background(), options.Up{}); err != nil {
Log: true,
}); err != nil {
return err return err
} }