summaryrefslogtreecommitdiff
path: root/libpod/events
diff options
context:
space:
mode:
Diffstat (limited to 'libpod/events')
-rw-r--r--libpod/events/events.go4
1 files changed, 0 insertions, 4 deletions
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)
}