Merge pull request #1771 from sboeuf/fix_exec

libcontainer: Don't set container state to running when exec'ing
This commit is contained in:
Mrunal Patel 2018-04-03 11:26:54 -07:00 committed by GitHub
commit cc4307ab66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -377,10 +377,6 @@ func (c *linuxContainer) start(process *Process, isInit bool) error {
} }
} }
} }
} else {
c.state = &runningState{
c: c,
}
} }
return nil return nil
} }