carn1x
carn1x
Test via django shell: ``` >>> from django.contrib.auth import get_user_model >>> from profile.models import Profile >>> user = get_user_model().objects.create_user('[email protected]', 'testpass') >>> user >>> user.pk 4L >>> profile = Profile(user=user, phone='1',...
Also, just tested with `Profile.audit_log` removed just for fun and there is no error on `user.delete()` in that scenario.
Changing from `OneToOneField` to `ForeignKey` has no effect, the problem remains.
Just read the snippet on M2M relations in the doc: http://django-audit-log.readthedocs.org/en/stable/model_history.html#m2m-relations which I guess makes this unsupported?
Would this describe the ability to list and specify specific test functions as per this example?: For instance in a current project I run `-m runtests -l` and get: ```...
Fixed with `npm install bufferutil utf-8-validate`, and I suspect this issue is probably not within the scope of angular-websockets to fix. Should these actually be dependencies of `ws` or does...
@laszlolaszlo I'm getting the exact same issue in EKS, so not just a Minikube issue I think.
Confirmed, fixed by forcefully providing a bytestring for the certificate path `b'/path/to/file.pem'`