I have created schedule job but cron seems don’t work correctly.
I have added * * * * *
in Custom to run every minute but it doesn’t work, I can see next run in 26 min
. If I try * 1 * * *
I Can see next run in 11 hours .
I have tried this but same issue */1 * * * *
Someone can explain me please ?
Thanks
I have found the solution;
To change the Sidekiq worker’s frequency:
- Edit the
gitlab_rails['pipeline_schedule_worker_cron'] value in your instance’s gitlab.rb file.
-
Reconfigure GitLab for the changes to take effect.
https://docs.gitlab.com/ce/user/project/pipelines/schedules.html#advanced-configuration
Thanks