cron icon indicating copy to clipboard operation
cron copied to clipboard

a cron library for go

Results 173 cron issues
Sort by recently updated
recently updated
newest added

code: id := 1 cron.New().Remove(1) cron.New().Remove(id) question: 1. The parameter requirement is EntryID, why is 1 possible? 2. 1 There is no error, why can't the id?

# Crash panic: runtime error: slice bounds out of range [:-1] # Crash Log github.com/robfig/cron/v3.Parser.Parse({0x125d130}, {0x116435c, 0x9}) /Users/ljc/go/pkg/mod/github.com/robfig/cron/[email protected]/parser.go:99 +0x7bc github.com/robfig/cron/v3.ParseStandard(...) /Users/ljc/go/pkg/mod/github.com/robfig/cron/[email protected]/parser.go:230 # PoC ```go cron.ParseStandard("TZ=TZ=TZ=") ```

# Description Adds a public function `IsRunning` to report back the health status of the cron scheduler.

I have deployed crons with @daily in cloud foundry and it is not working but when I run locally same thing works fine.

First of all, thans for your great cron job. I read dayMatches code in spec.go but did not figure out why you check starBit before return result. Why use ||...

I am thinking that in the actual project application scenario, our cron actually runs under multiple nodes. I was wondering if I could provide an independent way to support the...

Solves issue https://github.com/robfig/cron/issues/477

The Readme currently links to the old docs, which show v1.2.0 as the latest release. It should probably link to https://pkg.go.dev/github.com/robfig/cron/v3 instead? The go docs site is not nice enough...