Sébastien Corbin
Sébastien Corbin
Can you try adding this to your settings `SILKY_IGNORE_QUERIES = ['']`
Should be solved by #258
Can you paste the full traceback of your error? It should not be an error if the variable is inexistent
One possible solution is to use [select_for_update](https://docs.djangoproject.com/en/3.2/ref/models/querysets/#select-for-update) to lock the rows before deletion, using `skip_locked=True`
Should be solved by #258
Bytes, this is a documentation issue
Garbage collection (clearing the old requests given `SILKY_MAX_RECORDED_REQUESTS` is done either: - during request save, but with a chance given `SILKY_MAX_RECORDED_REQUESTS_CHECK_PERCENT` - on launching the `./manage.py silk_request_garbage_collect` command
Related question composer/composer#6261
For those interested, you can try my ugly patch here https://github.com/SebCorbin/composer-patches/commit/1cb9bacba51f8bba0c5f3f322c3bb61e4ceae974. If it works, then report it and it may set a direction for the maintainers...
I would also add this for python 3.5 compatibility ``` try: from builtins import chr as unichr except ImportError: pass ```