jlinn / quartz-redis-jobstore

A Quartz Scheduler JobStore using Redis.
Apache License 2.0
136 stars 67 forks source link

Remove jobs from being blocked upon removal. #29

Closed travismcchesney closed 7 years ago

travismcchesney commented 7 years ago

Currently, removing a job does not clean up the references to it being blocked. Consequently, if a job with the same name is re-created later, it will start its life blocked.

The code in this PR will delete the references to a job being blocked when the job is removed.

jlinn commented 7 years ago

Odd that there were test failures in Travis. They pass locally, which is good enough for me. Thanks for the fix!