diff options
author | Mike Gerber <neingeist@bl0rg.net> | 2020-02-18 04:14:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 22:14:11 -0500 |
commit | a67630deb2619705bab050521a875a61a2634066 (patch) | |
tree | a5ea5846c2c131d8a8b5c112766f730f0a93c9a4 /docs | |
parent | ce0413ff8894660f0a5f0a87cbadb6baacb80e4a (diff) | |
download | gitea-a67630deb2619705bab050521a875a61a2634066.tar.gz gitea-a67630deb2619705bab050521a875a61a2634066.zip |
Fix cron.repo_health_check schedule example in config cheat sheet (#10324)
Fixes #10274.
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/config-cheat-sheet.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/advanced/config-cheat-sheet.en-us.md b/docs/content/doc/advanced/config-cheat-sheet.en-us.md index 5ce8f8a758..b21a25faa0 100644 --- a/docs/content/doc/advanced/config-cheat-sheet.en-us.md +++ b/docs/content/doc/advanced/config-cheat-sheet.en-us.md @@ -518,7 +518,7 @@ NB: You must `REDIRECT_MACARON_LOG` and have `DISABLE_ROUTER_LOG` set to `false` ### Cron - Repository Health Check (`cron.repo_health_check`) -- `SCHEDULE`: **every 24h**: Cron syntax for scheduling repository health check. +- `SCHEDULE`: **@every 24h**: Cron syntax for scheduling repository health check. - `TIMEOUT`: **60s**: Time duration syntax for health check execution timeout. - `ARGS`: **\<empty\>**: Arguments for command `git fsck`, e.g. `--unreachable --tags`. See more on http://git-scm.com/docs/git-fsck |