Flask-RQ2 icon indicating copy to clipboard operation
Flask-RQ2 copied to clipboard

A Flask extension for RQ.

Results 41 Flask-RQ2 issues
Sort by recently updated
recently updated
newest added

Added support for the Retry() class of RQ. Tested working.

As noted in #116 there is no support for `on_success` or `on_failure` callbacks. This adds them I'm using this in my application and it seems to work fine. If someone...

Hello, By any chance will this be updated to 1.8 feature? https://github.com/rq/rq/releases Having the new feature would be great: > `RoundRobinWorker and RandomWorker` classes to control how jobs are dequeued...

`flask_rq2.job.FlaskJob` is nice, but initializing the app each time can be time-consuming if the app has to make a database connection, initialize some other extensions, etc. It'd be great if...

in [this line](https://github.com/rq/Flask-RQ2/blob/d6b4f99f69d8af0e8ea58a13d830f869001ed06f/src/flask_rq2/functions.py#L127) and [this line](https://github.com/rq/Flask-RQ2/blob/d6b4f99f69d8af0e8ea58a13d830f869001ed06f/src/flask_rq2/app.py#L287), the enqueue_call didn't recognise `on_success` and `on_failure` args, and passed it as `kargs` if supplied in function call. [RQ related source](https://github.com/rq/rq/blob/9737ffa95fa23dfdebee72f581d72ba88c725a25/rq/queue.py#L375) Sample code: ```...

For whatever reason, launching flask-rq2 from supervisord seems to be giving me incredible difficulty which I have never encountered using vanilla rq or even running a Flask app with RQ2...

# Steps to reproduce 1. Create a clean venv. `python3 -m venv env`. 2. Install Flask-RQ2 from source using `pip install -e .` 3. Trying to run/import Flask-RQ2 causes the...

I have a function which I run using flask-rq which takes some input and writes to a new excel file in the server. The name of the file is result_{yyyy__mm__dd}.xlsx,...