Skip to content

Commit 777da6d

Browse files
committed
(fix): Markdown parsing errors
1 parent 7a94830 commit 777da6d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/en/docs/cluster/cron-jobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ This page provides examples how we setup the *cron jobs*. Adjust the times and f
1717
SHELL=/bin/bash
1818
1919
## Deprecated! We do not recommend to use the cron feature to schedule jobs
20-
#*/5 * * * * PATH_TO_GMT/venv/bin/python3 PATH_TO_GMT/tools/jobs.py project &>> /var/log/green-metrics-jobs.log
20+
#*\/5 * * * * PATH_TO_GMT/venv/bin/python3 PATH_TO_GMT/tools/jobs.py project &>> /var/log/green-metrics-jobs.log
2121
2222
## We recommend to trigger the email job every 2 minutes
2323
## You can trigger it more often, as it has a locking mechanism. The mechanism is however not fully parallel safe and email processing is not done in a transaction which might lead to race conditions if multiple connections to the DB in parallel try to set the DB lock.
24-
*/2 * * * * PATH_TO_GMT/venv/bin/python3 PATH_TO_GMT/cron/jobs.py email &>> /var/log/green-metrics-jobs.log
24+
*\/2 * * * * PATH_TO_GMT/venv/bin/python3 PATH_TO_GMT/cron/jobs.py email &>> /var/log/green-metrics-jobs.log
2525
2626
## If you only run daily or weekly projects this needs to only run once a day
2727
## If you use the commit or tag feature we recommend every 15 minutes

0 commit comments

Comments
 (0)