Skip to content

Commit

Permalink
fix: delay deploy checks
Browse files Browse the repository at this point in the history
Avoid running them when everything is starting up to avoid
false reports about degraded performance.
  • Loading branch information
nijel committed Nov 13, 2024
1 parent 9385b64 commit c1392d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/supervisor/conf.d/check.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:check]
command = /app/venv/bin/weblate check --deploy
command=bash -c "sleep 60 && exec /app/venv/bin/weblate check --deploy"
autorestart = false
stdout_events_enabled=true
stderr_events_enabled=true
Expand Down

0 comments on commit c1392d8

Please sign in to comment.