Mustafa Simav

Results 3 comments of Mustafa Simav

We had a similar issue. After debugging we see that the error is caused by `QuerySet`'s stale cache when it is used with either `factory.Iterator` or `factory.fuzzy.FuzzyChoice`. * Django `QuerySet`s...

We had the same issue with graphene v3. As a workaround, we copy-pasted the `allow_any` function from [2f670d7](https://github.com/flavors/django-graphql-jwt/blob/2f670d7e48b7dab6be1308b4e7afda5c1930e1f3/graphql_jwt/middleware.py#L15) and set `JWT_ALLOW_ANY_HANDLER` to use that version of the `allow_any` function. ```...

Today I created a new project from scratch to see if the problem is related to our codebase. I think I have found an interesting case. ## Problem In our...