Flask-RQ2
Flask-RQ2 copied to clipboard
Setting RQ_ASYNC = False doesn't affect scheduling
Hey,
in my tests I use RQ_ASYNC = False which works fine for .queue(), but seems to do nothing for .schedule().
Thank you in advance!
Hmm, this isn't a feature that is included in rq-scheduler, so I'm not sure if this is something Flask-RQ2 should add on top. Could you elaborate what type of behavior you expect? As soon as a job is scheduled, it should be run? How would that work for jobs that are scheduled on module level with rq.schedule(...)
instead of inline of a (view) function?