uwsgi_tasks icon indicating copy to clipboard operation
uwsgi_tasks copied to clipboard

Asynchronous tasks management with UWSGI server

Results 2 uwsgi_tasks issues
Sort by recently updated
recently updated
newest added

I have a working Django 4.0 project. My Django 4.2 project will error out on almost any basic query that uwsgi-tasks runs. With this code it simply is failing to...

Consider the following task: ```python @task(executor=TaskExecutor.SPOOLER, at=timedelta(seconds=30)) def delayed_task(): logger.info("!!! Inside delayed task !!!") return SPOOL_OK ``` and the following uwsgi spooler config: ``` spooler = ~/projects/backend/spool spooler-processes = 2...