From 99318b08946b79326006d4661367812bcc838c80 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Fri, 29 Mar 2019 12:59:05 -0400 Subject: Remove wait event It's not necessary to log an event for a read-only operation like wait. Signed-off-by: Matthew Heon --- libpod/container_api.go | 1 - 1 file changed, 1 deletion(-) (limited to 'libpod/container_api.go') 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 } -- cgit v1.2.3-54-g00ecf