check if schedule len > 0 to prevent collisions

pull/282/head
Matti Ranta 5 years ago
parent fc739c5ca8
commit ba5ac33e93
No known key found for this signature in database
GPG Key ID: D9B5613BEB813F99

@ -66,10 +66,11 @@ func before(c *cli.Context) error {
pollingSet := c.IsSet("interval")
cronSet := c.IsSet("schedule")
cronLen := len(c.String("schedule"))
if pollingSet && cronSet {
if pollingSet && cronSet && cronLen > 0 {
log.Fatal("Only schedule or interval can be defined, not both.")
} else if cronSet {
} else if cronSet && cronLen > 0 {
scheduleSpec = c.String("schedule")
} else {
scheduleSpec = "@every " + strconv.Itoa(c.Int("interval")) + "s"

Loading…
Cancel
Save