aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/podman-events.1.md1
-rw-r--r--libpod/container_api.go1
-rw-r--r--libpod/events/events.go4
3 files changed, 0 insertions, 6 deletions
diff --git a/docs/podman-events.1.md b/docs/podman-events.1.md
index 3463d2aaa..40f7e8457 100644
--- a/docs/podman-events.1.md
+++ b/docs/podman-events.1.md
@@ -32,7 +32,6 @@ The *container* event type will report the follow statuses:
* sync
* unmount
* unpause
- * wait
The *pod* event type will report the follow statuses:
* create
diff --git a/libpod/container_api.go b/libpod/container_api.go
index 96435c2ff..2a2381923 100644
--- a/libpod/container_api.go
+++ b/libpod/container_api.go
@@ -574,7 +574,6 @@ func (c *Container) WaitWithInterval(waitTimeout time.Duration) (int32, error) {
return 0, err
}
exitCode := c.state.ExitCode
- c.newContainerEvent(events.Wait)
return exitCode, nil
}
diff --git a/libpod/events/events.go b/libpod/events/events.go
index 7db36653e..b44ba5742 100644
--- a/libpod/events/events.go
+++ b/libpod/events/events.go
@@ -104,8 +104,6 @@ const (
Unpause Status = "unpause"
// Untag ...
Untag Status = "untag"
- // Wait ...
- Wait Status = "wait"
)
// EventFilter for filtering events
@@ -261,8 +259,6 @@ func StringToStatus(name string) (Status, error) {
return Unpause, nil
case Untag.String():
return Untag, nil
- case Wait.String():
- return Wait, nil
}
return "", errors.Errorf("unknown event status %s", name)
}