Fix concurrency issues

This commit is contained in:
Michael Crosby 2015-11-06 16:44:52 -08:00
parent 412d2b0239
commit c787ecada3
3 changed files with 52 additions and 11 deletions

View file

@ -27,3 +27,11 @@ type StartContainerEvent struct {
func (c *StartContainerEvent) String() string {
return "create container"
}
type ContainerStartErrorEvent struct {
ID string
}
func (c *ContainerStartErrorEvent) String() string {
return "container start error"
}