Merge pull request #39828 from thaJeztah/fix_containerStart_unhandled_error
daemon:containerStart() fix unhandled error for saveApparmorConfig
This commit is contained in:
commit
1655593dfc
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ func (daemon *Daemon) containerStart(container *container.Container, checkpoint
|
|||
container.HasBeenManuallyStopped = false
|
||||
}
|
||||
|
||||
if daemon.saveApparmorConfig(container); err != nil {
|
||||
if err := daemon.saveApparmorConfig(container); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue