mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-21 21:35:28 +02:00
Fix hugo benchmark
Appending to the site 13 times doesn't sound realistic.
This commit is contained in:
@@ -53,6 +53,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
|
||||
return err
|
||||
}
|
||||
for i := 0; i < benchmarkTimes; i++ {
|
||||
mainSite = nil
|
||||
_ = buildSite()
|
||||
}
|
||||
pprof.WriteHeapProfile(f)
|
||||
@@ -71,6 +72,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
|
||||
pprof.StartCPUProfile(f)
|
||||
defer pprof.StopCPUProfile()
|
||||
for i := 0; i < benchmarkTimes; i++ {
|
||||
mainSite = nil
|
||||
_ = buildSite()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user