summaryrefslogtreecommitdiffstats
path: root/hugolib/pagebundler_capture.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/pagebundler_capture.go')
-rw-r--r--hugolib/pagebundler_capture.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/hugolib/pagebundler_capture.go b/hugolib/pagebundler_capture.go
index 17a4b865a..7c01a751d 100644
--- a/hugolib/pagebundler_capture.go
+++ b/hugolib/pagebundler_capture.go
@@ -19,7 +19,8 @@ import (
"os"
"path"
"path/filepath"
- "runtime"
+
+ "github.com/gohugoio/hugo/config"
"github.com/gohugoio/hugo/common/loggers"
_errors "github.com/pkg/errors"
@@ -70,10 +71,7 @@ func newCapturer(
contentChanges *contentChangeMap,
filenames ...string) *capturer {
- numWorkers := 4
- if n := runtime.NumCPU(); n > numWorkers {
- numWorkers = n
- }
+ numWorkers := config.GetNumWorkerMultiplier()
// TODO(bep) the "index" vs "_index" check/strings should be moved in one place.
isBundleHeader := func(filename string) bool {