jobrunner icon indicating copy to clipboard operation
jobrunner copied to clipboard

Framework for performing work asynchronously, outside of the request flow

Results 11 jobrunner issues
Sort by recently updated
recently updated
newest added

Hello, If I create an entry for the scheduler, can I update/delete that entry ? Thank you

Hi, this RP allow us to use user-defined job name and it is compatible.

First of all, thanks for this. It helped me build my own cron job manager. I would still like to use jobrunner for regular internal crons. Are you still supporting...

With the example ```go jobrunner.Schedule("* */5 * * * *", DoSomething{}) // every 5min do something ``` But log report err: expected exactly 5 fields, found 6. The github.com/robfig/cron/v3 package...

Hi I was playing around with the example and found an error. The status page was also not complete html. thanks for the library!!

When scheduling a job, I expected to get an entryID for this job, so I can remove this job later.

I just encountered a runtime error, the logs is as below: ```shell goroutine 1526 [running]: log.(*Logger).Panic(0xc0005440f0, 0xc000467c00, 0x3, 0x3) /Users/smy/sdk/go1.13.8/src/log/log.go:212 +0xaa github.com/bamzi/jobrunner.(*Job).Run.func1() /Users/smy/go/pkg/mod/github.com/bamzi/[email protected]/jobrunner.go:55 +0x1a5 panic(0xe86880, 0x1804d70) /Users/smy/sdk/go1.13.8/src/runtime/panic.go:679 +0x1b2 main.UpdateNews.Run() /Users/smy/go/src/GBlog/main.go:29...

I think we should make it compatible with the custom logger modules created in the applications. In this way, job status can be monitored in autonomous state. I can write...

as this issue #8 say, currenctly I can not add a job using user-defined name. I create a RP and resolve this. The example is as follow: ```go var myFunc...