Fix concurrency issues
This commit is contained in:
parent
412d2b0239
commit
c787ecada3
3 changed files with 52 additions and 11 deletions
8
event.go
8
event.go
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue