Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 8f7f8f4

Browse files
authored
Merge pull request #447 from thaJeztah/19.03_backport_fix_containerStart_unhandled_error
[19.03 backport] daemon:containerStart() fix unhandled error for saveApparmorConfig Upstream-commit: efe241644b11a17d8f12a497b465b82a89f809d2 Component: engine
2 parents 084a766 + 3a8b05b commit 8f7f8f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/engine/daemon/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func (daemon *Daemon) containerStart(container *container.Container, checkpoint
161161
container.HasBeenManuallyStopped = false
162162
}
163163

164-
if daemon.saveApparmorConfig(container); err != nil {
164+
if err := daemon.saveApparmorConfig(container); err != nil {
165165
return err
166166
}
167167

0 commit comments

Comments
 (0)