Dave Hall
Dave Hall
I'm afraid I'm away at the moment, but will have a look when I'm back next week. On Thu, 7 Apr 2016 at 20:03 Ryan Rubin [email protected] wrote: > I'm...
Okay, it looks like django-watson doesn't support separate registration for proxy models. I guess it probably should. There are a few changes that are needed: 1. Adding a `for_concrete_model=True` argument...
I don't think this is possible. If you want the metadata, why not use search()? On Tue, 15 Sep 2020 at 14:39, valentijnscholten wrote: > Currently when using .search() you...
The metadata is saved as a json-encoded blob. It could possibly be attached to the model using ".annotate()", but it would be attached as a string, rather than a dictionary....
You should update to django-python3-ldap version 0.13.1. On Wed, 5 Jan 2022 at 15:49, Nanthakumar J J ***@***.***> wrote: > Could you please elaborate on this. Because I am also...
The best option seems to be to make a custom loaddata command that accepts from stdin: https://gist.github.com/bmispelon/ad5a2c333443b3a1d051 Then to pipe it in via heroku run. http://stackoverflow.com/questions/15041853/running-loaddata-on-heroku-without-adding-the-data-file-to-repository I really think Django's...
The build seems to be failing. It looks like `flake8` have updated their default ruleset, but also that unit tests are now failing. Could you address these issues please?
Do you know what's triggering the recreation of the storage object? AFAIK it's created once globally, and only changes if the storage backend setting changes
This comment appears to suggest that the session can be shared between multiple threads: https://github.com/boto/boto3/issues/1670#issuecomment-415510208
Ugh, this is a mess. The boto documentation and issue tracker make it very unclear what should be considered thread-safe, and what should be shareable. Maybe it's changed since I...