Use NumCPU and not GOMAXPROCS

This commit is contained in:
Dane Everitt
2020-07-31 21:31:53 -07:00
parent 5366d0f652
commit f889a193bf
3 changed files with 3 additions and 3 deletions

View File

@@ -8,7 +8,7 @@ import (
// Parent function that will update all of the defined configuration files for a server
// automatically to ensure that they always use the specified values.
func (s *Server) UpdateConfigurationFiles() {
pool := workerpool.New(runtime.GOMAXPROCS(0))
pool := workerpool.New(runtime.NumCPU())
files := s.ProcessConfiguration().ConfigurationFiles
for _, cf := range files {