Browse Source

Remove channel close.

Send a message instead, discarding duplicated messages.

Signed-off-by: David Calavera <david.calavera@gmail.com>
David Calavera 9 years ago
parent
commit
0109510830
1 changed files with 1 additions and 1 deletions
  1. 1 1
      integration-cli/events_utils.go

+ 1 - 1
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
 		}
 	}
 }