Maxim Zemskov

Results 6 comments of Maxim Zemskov

The same issue actually with `auth` when redirecting to different origin. During the redirect, the authorization is reset in the https://github.com/aio-libs/aiohttp/blob/master/aiohttp/client.py#L601, but if the `auth` parameter is passed to the...

Thanks. Will have a look at the weekend

@auvipy I fixed one of two failed tests. Trying to fix last test but can't figure out what is the problem. Stucked with fixing this test https://github.com/jazzband/django-model-utils/blob/master/tests/test_fields/test_field_tracker.py#L590. Can't understand why...

Looks like at the moment of execution `set_saved_fields` method `self.instance._state.adding` is always `True`. It becomes `False` inside django's `Model.from_db` method

Found the problem. `initialize_tracker` called on model's `post_init` signal and `_state` at this moment contains default values https://docs.djangoproject.com/en/3.0/ref/signals/#post-init > Note >instance._state isn’t set before sending the post_init signal, so _state...