From 51f08b0b6aae175299b4e73d521343a4386a9cf7 Mon Sep 17 00:00:00 2001 From: Bjørn Erik Pedersen Date: Mon, 9 May 2022 10:05:19 +0200 Subject: Revise the use of htime.Since/htime.Now We cannot (also, it doesn't add any value) use that when the `clock` is set, * To measure time (before that global is set) * To compare file timestamps re cache eviction Fixes #9868 --- modules/collect.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/collect.go b/modules/collect.go index 4f5b1c36f..ff83f9ecc 100644 --- a/modules/collect.go +++ b/modules/collect.go @@ -23,7 +23,6 @@ import ( "time" "github.com/bep/debounce" - "github.com/gohugoio/hugo/common/htime" "github.com/gohugoio/hugo/common/loggers" "github.com/spf13/cast" @@ -506,7 +505,7 @@ func (c *collector) applyThemeConfig(tc *moduleAdapter) error { } func (c *collector) collect() { - defer c.logger.PrintTimerIfDelayed(htime.Now(), "hugo: collected modules") + defer c.logger.PrintTimerIfDelayed(time.Now(), "hugo: collected modules") d := debounce.New(2 * time.Second) d(func() { c.logger.Println("hugo: downloading modules …") -- cgit v1.2.3