If the cron job fails, is there a feature in robfig cron scheduler to retry a certain number of times?
func funcScheduler() {
c := cron.New()
c.AddFunc("0 12 14 * * *", func(){test()})
c.start()
}
If the test() returns an error then how to retry again without waiting for the next run according to the cron job schedule and try n number of times as soon as error returned.