Flask-RQ2
Flask-RQ2 copied to clipboard
A Flask extension for RQ.
thus preventing flask from destroying the db session when used with sqlalchemy in single session mode for testing.
The current approach crashes the worker processes because the sqlalchemy connection isn't initiated properly. The sympton is that the first job was processed beautifully but subsequent jobs failed with the...
Is there a way to get a list of all currently running workers?
Just forward this new option on Flask-RQ2 cli, [available since RQ 1.0](https://github.com/rq/rq/blob/v1.0/rq/cli/cli.py#L190)
When using the application factory pattern, the `RQ_ASYNC` configuration is only respected if it has not already been set for the task queue being initialized. Concrete example to show the...
Hey there, just want to give a heads up about the next major RQ release, v1.0. I plan on releasing this new version in the second half of Feb (although...
allows for decorating a function without needing the app context at time of definition. ```@job('default') def echo_id(id): print(id) echo_id.enqueue(15)
Hello there, I'm host my app in docker and launch the rq worker with supervisor. I create a bash script to help launch the worker, the core code is: ```...