Skip to content

Commit

Permalink
feat: bump default goroutine amount
Browse files Browse the repository at this point in the history
  • Loading branch information
hum committed Jan 27, 2023
1 parent 2dcb0d3 commit 11fa104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peep.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func resolve(in <-chan string, out chan<- string, wg *sync.WaitGroup) {
}

func main() {
var maxWorkerPool int = runtime.GOMAXPROCS(0)
var maxWorkerPool int = runtime.GOMAXPROCS(0) * 2

flag.StringVar(&domainName, "domain", "", "domain name to look up")
flag.StringVar(&domainName, "d", "", "domain name to look up")
Expand Down

0 comments on commit 11fa104

Please sign in to comment.