Skip to content

Commit 11fa104

Browse files
committed
feat: bump default goroutine amount
1 parent 2dcb0d3 commit 11fa104

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

peep.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func resolve(in <-chan string, out chan<- string, wg *sync.WaitGroup) {
5757
}
5858

5959
func main() {
60-
var maxWorkerPool int = runtime.GOMAXPROCS(0)
60+
var maxWorkerPool int = runtime.GOMAXPROCS(0) * 2
6161

6262
flag.StringVar(&domainName, "domain", "", "domain name to look up")
6363
flag.StringVar(&domainName, "d", "", "domain name to look up")

0 commit comments

Comments
 (0)