summaryrefslogtreecommitdiff
path: root/libpod/events/events.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@pm.me>2019-03-29 12:59:05 -0400
committerMatthew Heon <matthew.heon@pm.me>2019-03-29 14:50:43 -0400
commit99318b08946b79326006d4661367812bcc838c80 (patch)
tree5f13b1df4846234506fe4c34c72315c42f2727e4 /libpod/events/events.go
parentf4d90a96cb7eabde3d999390619aae683e05b00e (diff)
downloadpodman-99318b08946b79326006d4661367812bcc838c80.tar.gz
podman-99318b08946b79326006d4661367812bcc838c80.tar.bz2
podman-99318b08946b79326006d4661367812bcc838c80.zip
Remove wait event
It's not necessary to log an event for a read-only operation like wait. Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod/events/events.go')
-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)
}