commands: Revert the recent changes that allowed profiling on server rebuilds

There have been indications that this may freeze the server.
This commit is contained in:
Bjørn Erik Pedersen 2024-02-05 14:27:35 +01:00
parent 9c6d377872
commit c37bf19c89
No known key found for this signature in database
3 changed files with 13 additions and 15 deletions

View file

@ -361,32 +361,34 @@ func (c *hugoBuilder) newWatcher(pollIntervalStr string, dirList ...string) (*wa
return watcher, nil
}
func (c *hugoBuilder) build() (func(), error) {
func (c *hugoBuilder) build() error {
stopProfiling, err := c.initProfiling()
if err != nil {
return nil, err
return err
}
defer func() {
if stopProfiling != nil {
stopProfiling()
}
}()
if err := c.fullBuild(false); err != nil {
return nil, err
return err
}
if !c.r.quiet {
c.r.Println()
h, err := c.hugo()
if err != nil {
return nil, err
return err
}
h.PrintProcessingStats(os.Stdout)
c.r.Println()
}
return func() {
if stopProfiling != nil {
stopProfiling()
}
}, nil
return nil
}
func (c *hugoBuilder) buildSites(noBuildLock bool) (err error) {