From 79e198451c9f68762b8d8db74db70b2dc01bd688 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Mon, 2 Jan 2017 17:49:49 +0100 Subject: [PATCH] Don't set GOMAXPROCS This was a temporary fix for Go earlier than 1.5 to run code on all avaialble cores. We don't need that any more since we require at least Go 1.6. --- src/cmds/restic/main.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/cmds/restic/main.go b/src/cmds/restic/main.go index a4d162679..03f7f9035 100644 --- a/src/cmds/restic/main.go +++ b/src/cmds/restic/main.go @@ -5,7 +5,6 @@ import ( "os" "restic" "restic/debug" - "runtime" "github.com/spf13/cobra" @@ -33,17 +32,6 @@ directories in an encrypted repository stored on different backends. }, } -func init() { - // set GOMAXPROCS to number of CPUs - if runtime.Version() < "go1.5" { - gomaxprocs := os.Getenv("GOMAXPROCS") - debug.Log("read GOMAXPROCS from env variable, value: %s", gomaxprocs) - if gomaxprocs == "" { - runtime.GOMAXPROCS(runtime.NumCPU()) - } - } -} - func main() { debug.Log("main %#v", os.Args) err := cmdRoot.Execute()