From fcf61701ccedae89e99797985308ab8a80b18151 Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Thu, 5 Sep 2013 19:59:45 -0400 Subject: [PATCH] Process remote events in their own goroutines --- asink/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asink/client.go b/asink/client.go index 9a9b44c..835809a 100644 --- a/asink/client.go +++ b/asink/client.go @@ -315,7 +315,7 @@ func ProcessRemoteEvent(globals AsinkGlobals, event *asink.Event) { func ProcessRemoteEvents(globals AsinkGlobals, eventChan chan *asink.Event) { for event := range eventChan { - ProcessRemoteEvent(globals, event) + go ProcessRemoteEvent(globals, event) } }