Dave Hall
Dave Hall
That’s not supported at this time, I’m afraid. I’d be happy to take a pull request that implemented it. > On 31 May 2015, at 14:43, Gustavo [email protected] wrote: >...
This is really odd and I can't reproduce it. Can you try adding a `print(type(live_objs))` right before the offending line in `createinitialrevisions`? I'm wondering if some 3rd party code is...
django-watson supports non-integer primary keys. Unfortunately, your hashid field subclasses IntegerField (see https://github.com/nshafer/django-hashid-field/blob/master/hashid_field/field.py#L188), so django-watson is assuming it will have an integer type. Which is a pretty fair assumption, IMO....
> I was able to connect and see attributes when doing it in a Python Console using ldap3 Any chance you could share the full user fields? It's likely you...
Your call to `conn.search('CN=Users,DC=priv,DC=,DC=co', '(CN=Sean Roberts)', attributes=[ALL_ATTRIBUTES])` was using `CN=Users,DC=priv,DC=,DC=co` as the search base, but your django settings use `'dc=priv,dc=*****g,dc=co', Try updating `LDAP_AUTH_SEARCH_BASE` to match the successful search base in...
Incredible, I've been watching and hoping for a long while for this to be sorted! I'm really glad it was included for 1.0. ❤️
~Any reason you're not a fan of `poetry`? I'm using it in personal and work projects and haven't had any serious issues (and the non-serious issues are fixed now).~ Ignore...
I'd take a PR that documented this. Your approach is sound, and the performance would still be better than performing mutiple `save()`s on the models.
I'm a bit short on time at the moment, but I'd be happy to take a PR that implemented this.
> ignore_duplicates allows also being an itterable list of field names ☝️ This sounds nice!