How to run a cron job every 15 minutes on Jenkins?
I've tried using this:
In Jenkins, I am having a job that is set to run for every 15 minutes using the specified cron syntax :
14 * * * *
But the job is executing for every hour instead of the specified time (15 minutes).
I've received an error (warning) regarding format of the cron syntax, which is:
Spread load evenly by using ‘H * * * *’ rather than ‘14 * * * *’
Is this the reason why cron job usually executes every hour instead of 15 minutes ?