Skip to content

Commit d913f46

Browse files
committed
Fix server refresh on 404 template changes
Fixes #13209
1 parent 2db43f8 commit d913f46

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

‎hugolib/404_test.go

+31
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
package hugolib
1515

1616
import (
17+
"fmt"
1718
"testing"
1819
)
1920

@@ -82,3 +83,33 @@ Page not found
8283
Base:
8384
Page not found`)
8485
}
86+
87+
func Test404EditTemplate(t *testing.T) {
88+
t.Parallel()
89+
90+
files := `
91+
-- hugo.toml --
92+
baseURL = "http://example.com/"
93+
disableLiveReload = true
94+
[internal]
95+
fastRenderMode = true
96+
-- layouts/_default/baseof.html --
97+
Base: {{ block "main" . }}{{ end }}
98+
-- layouts/404.html --
99+
{{ define "main" }}
100+
Not found.
101+
{{ end }}
102+
103+
`
104+
105+
b := TestRunning(t, files)
106+
107+
b.AssertFileContent("public/404.html", `Not found.`)
108+
109+
b.EditFiles("layouts/404.html", `Not found. Updated.`).Build()
110+
111+
fmt.Println("Rebuilding")
112+
b.BuildPartial("/does-not-exist")
113+
114+
b.AssertFileContent("public/404.html", `Not found. Updated.`)
115+
}

‎hugolib/content_map_page.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ func (h *HugoSites) resolveAndResetDependententPageOutputs(ctx context.Context,
12741274

12751275
po.renderState = 0
12761276
po.p.resourcesPublishInit = &sync.Once{}
1277-
if r == identity.FinderFoundOneOfMany {
1277+
if r == identity.FinderFoundOneOfMany || po.f.Name == output.HTTPStatusHTMLFormat.Name {
12781278
// Will force a re-render even in fast render mode.
12791279
po.renderOnce = false
12801280
}
@@ -1310,6 +1310,7 @@ func (h *HugoSites) resolveAndResetDependententPageOutputs(ctx context.Context,
13101310
if !po.isRendered() {
13111311
continue
13121312
}
1313+
13131314
for _, id := range changes {
13141315
checkedCounter.Add(1)
13151316
if r := depsFinder.Contains(id, po.dependencyManagerOutput, 50); r > identity.FinderFoundOneOfManyRepetition {

0 commit comments

Comments
 (0)