Skip to content

Commit faf96dd

Browse files
committed
add maxprocs
1 parent c8a2eae commit faf96dd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

main/guery.go

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package main
33
import (
44
"log"
55
"os"
6+
"runtime"
67

78
"github.com/satori/go.uuid"
89
"github.com/xitongsys/guery/agent"
@@ -34,6 +35,7 @@ var (
3435
)
3536

3637
func main() {
38+
runtime.GOMAXPROCS(runtime.NumCPU() * 2)
3739
logger.Infof("Welcome to use Guery !")
3840
switch kingpin.MustParse(app.Parse(os.Args[1:])) {
3941
case masterFlag.FullCommand():

0 commit comments

Comments
 (0)