jrallison/go-workers

Found two bugs.

Closed this issue · 0 comments

config.go:36

if options["poll_interval"] != "" {

Unequal is wrong. It should be equal.

options["poll_interval"] == ""

scheduled.go:55

s.poll(true)

That's a recursive fun call. It will cause stack too big and over limit.