From 5b3425a689d31d58aee0d535ca146b7bd8a55efb Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 21 Dec 2016 02:39:54 -0500 Subject: [PATCH] pgraph: Remember to unpause the vertices! Forgot this part earlier, sorry! Should work correctly now :) --- pgraph/actions.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pgraph/actions.go b/pgraph/actions.go index ff18bc72..d691f942 100644 --- a/pgraph/actions.go +++ b/pgraph/actions.go @@ -497,6 +497,10 @@ func (g *Graph) Start(first bool) { // start or continue defer wg.Done() vv.Res.Started() // block until started }(v) + + if !first { // unpause! + v.Res.SendEvent(event.EventStart, true, false) // sync! + } } wg.Wait() // wait for everyone