From 59a2b7ca1df1ed42ca44f26c2f5267e20643db86 Mon Sep 17 00:00:00 2001 From: Leonid Bugaev Date: Wed, 29 Jan 2014 21:13:24 +0600 Subject: [PATCH] GOMAXPROCS should be set manually --- emitter.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/emitter.go b/emitter.go index a4ce9515..d60effa0 100644 --- a/emitter.go +++ b/emitter.go @@ -6,8 +6,6 @@ import ( ) func Start(stop chan int) { - runtime.GOMAXPROCS(10) - for _, in := range Plugins.Inputs { go CopyMulty(in, Plugins.Outputs...) }