[00:11:25] Added! [17:05:02] Hi, I created a cronjob but it does not seems to be executing [17:05:29] NOTE: some crontab entries have been modified to grid submissions. [17:05:35] I got this message [17:07:38] !help [17:07:38] If you don't get a response in 15-30 minutes, please create a phabricator task -- https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=wmcs-kanban [17:08:57] What's the crontab look like? [17:09:28] Hi thanks for the reply [17:09:33] * * * * * cd public_html/tool-commons-android-app/scripts/refresh_leaderboard && /usr/bin/jsub -N cron-29 -once -quiet /usr/bin/python3.5 refresh_leaderboard.py >> output.out [18:09:26] madhurgupta10: after using `cd` in your crontab you also need to add `-cwd` to your jsub command. The output redirection will not functionally do anything either. You are using the `-quiet` flag which will keep jsub from writing anything that could catch. [18:10:12] madhurgupta10: I would expect this to work: cd public_html/tool-commons-android-app/scripts/refresh_leaderboard && /usr/bin/jsub -N cron-29 -once -quiet -cwd /usr/bin/python3.5 refresh_leaderboard.py [18:29:52] Thanks a lot