loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Kill all gitea processes before air build (#30477)

So it happened to me multiple times that air leaves zombie processes
after termination. I think ultimately it's some kind of bug in air, but
we can work around.

The change in the delay is unrelated to the zombie processes but seems
to help a bit with duplicate changes resulting in duplicate `make
generate` as seen here:

<img width="424" alt="Screenshot 2024-04-14 at 17 05 47"
src="https://github.com/go-gitea/gitea/assets/115237/6dd1d787-6be3-4fb2-8b0b-cd711c281793">

---------

Co-authored-by: delvh <dev.lh@web.de>
(cherry picked from commit 994920c677b04a720726d982e4d6212664b82a43)

authored by

silverwind
delvh
and committed by
Gergely Nagy
d99d2e3e 8dfbfd8e

+2 -1
+2 -1
.air.toml
··· 2 2 tmp_dir = ".air" 3 3 4 4 [build] 5 + pre_cmd = ["killall -9 gitea 2>/dev/null || true"] # kill off potential zombie processes from previous runs 5 6 cmd = "make --no-print-directory backend" 6 7 bin = "gitea" 7 - delay = 1000 8 + delay = 2000 8 9 include_ext = ["go", "tmpl"] 9 10 include_file = ["main.go"] 10 11 include_dir = ["cmd", "models", "modules", "options", "routers", "services"]