Aditya Kumar Gupta

Results 3 issues of Aditya Kumar Gupta

Currently in `clear_expired` function we have: ``` with transaction.atomic(): if refresh_expire_at: refresh_token_model.objects.filter(revoked__lt=refresh_expire_at).delete() refresh_token_model.objects.filter(access_token__expires__lt=refresh_expire_at).delete() access_token_model.objects.filter(refresh_token__isnull=True, expires__lt=now).delete() grant_model.objects.filter(expires__lt=now).delete() ``` Somewhere down in the past year, this function started timing out for us...

question

**Describe the bug** Revoking `AccessTokens` does not revoke the corresponding `RefreshTokens`. So in case, `AccessToken` is revoked, its deleted from the dB. If a request for a new token on...

bug

Hi, I have been trying to understand the provided code and have certain concerns about the decoder. main.py contains the following pieces of code ``` out = prepared_batch[2][:, :] tar...