diff --git a/integration-cli/events_utils.go b/integration-cli/events_utils.go index 77ec33dfd0..7089be2dc8 100644 --- a/integration-cli/events_utils.go +++ b/integration-cli/events_utils.go @@ -149,7 +149,7 @@ func matchEventLine(id, eventType string, actions map[string]chan bool) eventMat func processEventMatch(actions map[string]chan bool) eventMatchProcessor { return func(matches map[string]string) { if ch, ok := actions[matches["action"]]; ok { - close(ch) + ch <- true } } }