Jake Howard

Results 126 issues of Jake Howard

**Is your feature request related to a problem? Please describe.** It'd be really useful to be able to comment on documents, whether logged in or not. Currently inlining comments into...

feature: editor

Minified output should be smaller than input, so reclaim some memory.

This is more common with `script` tags, where most uses will reference external script files than inline scripts. Skipping this, even when JS / CSS minification is enabled avoids the...

It's currently not possible to specify which database backend will be used (ie the ones configured in `DATABASES`). Especially for SQLite, it's useful to separate the queue tables into a...

database-backend

Fixes #59 Unfortunately, SQLite tests are now much slower, as they don't run in memory any more. These process tests fail spectacularly on postgres, so more investigation is needed into...

Currently, if a worker exits in an unclean manner, the task remains marked as "PROCESSING", and thus is never picked up for re-processing nor marked as completed / failed.

database-backend

The initial DB worker (#3) polls for tasks every second (by default, configurable). These queries (and by extension, the underlying table) aren't especially optimised. It would be great if they...

database-backend

`django-tasks` and `django.tasks` should be able to exist at the same time in a given project. However, a task defined with `django-tasks.task` should be usable with a connection and backend...

Ensuring the `db_worker` command behaves correctly is critical. - Does it terminate cleanly on `ctrl+c`? - Does it terminate cleanly on `SIGTERM`, `SIGINT` and `SIGKILL`? - What if a task...

database-backend