You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running ariadne-jwt 0.1.7 with Django 4.0 throws the following exception:
[...]
File "[...]/python3.10/site-packages/ariadne_jwt/refresh_token/models.py", line 10, in <module>
from . import managers, signals
File "[...]/python3.10/site-packages/ariadne_jwt/refresh_token/signals.py", line 3, in <module>
refresh_token_revoked = Signal(providing_args=['refresh_token'])
TypeError: Signal.__init__() got an unexpected keyword argument 'providing_args'
Indeed the providing_args argument was deprecated in Django 3.1. As this argument is described as “purely documentational” it seems that removing it should be harmless.
The text was updated successfully, but these errors were encountered:
Running ariadne-jwt 0.1.7 with Django 4.0 throws the following exception:
Indeed the
providing_args
argument was deprecated in Django 3.1. As this argument is described as “purely documentational” it seems that removing it should be harmless.The text was updated successfully, but these errors were encountered: