From 4055c121847847d8bd6b95a928185daee065091b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 7 Sep 2020 15:07:10 +0200 Subject: Fix some change detection issues on server reloads * Fix change detection when .GetPage/site.GetPage is used from shortcode * Fix stale content for GetPage results with short name lookups on server reloads Fixes #7623 Fixes #7624 Fixes #7625 --- deps/deps.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'deps/deps.go') diff --git a/deps/deps.go b/deps/deps.go index 82a16ba59..07fe2fc7d 100644 --- a/deps/deps.go +++ b/deps/deps.go @@ -97,6 +97,9 @@ type Deps struct { // This is common/global for all sites. BuildState *BuildState + // Whether we are in running (server) mode + Running bool + *globalErrHandler } @@ -279,6 +282,7 @@ func New(cfg DepsCfg) (*Deps, error) { FileCaches: fileCaches, BuildStartListeners: &Listeners{}, BuildState: buildState, + Running: cfg.Running, Timeout: time.Duration(timeoutms) * time.Millisecond, globalErrHandler: errorHandler, } -- cgit v1.2.3