Debanshu Kundu
Debanshu Kundu
[JWS](https://datatracker.ietf.org/doc/html/rfc7515) and [JWE](https://datatracker.ietf.org/doc/html/rfc7516), both spec have the provision of custom (i.e. user-defined) headers. *python-jose* supports passing custom headers in the `headers` parameter in `jose.jws.sign()` method. But the same is not...
[JWS](https://datatracker.ietf.org/doc/html/rfc7515) and [JWE](https://datatracker.ietf.org/doc/html/rfc7516), both spec have the provision of custom (i.e. user-defined) headers. *python-jose* supports passing custom headers in the `headers` parameter in `jose.jws.sign()` method. But the same is not...
Our code was calling the `client.notify` function with an `app_id` that wasn't used to exist in the settings. And we were getting "RuntimeErro: maximum recursion depth exceeded" in our error...
This is happening because `_commited` attribute of a `FildeField`, which is checked here https://github.com/SmileyChris/easy-thumbnails/blob/2.3/easy_thumbnails/signal_handlers.py#L20 to send the `saved_file` signal is set to `True` in the `save` function (see: https://github.com/django/django/blob/1.9.7/django/db/models/fields/files.py#L89). Django...