-
Notifications
You must be signed in to change notification settings - Fork 13.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with PyJWT 2.10: {'msg': 'Subject must be a string'}
#30995
Comments
We just found this is most likely the root cause. The canonical recommendation is to downgrade to PyJWT in the meanwhile. pip install 'pyjwt<2.10' |
That patch submitted by Dependabot also demonstrates the problem. |
@jkogut: Do you have any idea why only we might be affected, but Superset's test suite seems to still succeed, and nobody else seems to be tripped? Is it related to the value of the SECRET_KEY maybe? |
@amotl yes indeed that was caused by the incorrect SECRET_KEY. Happened during test migration of superset instance. So indeed please double check SECRET_KEY. 🙏 |
@amotl actually I was wrong, correct SECRET_KEY only allowed me to get access token but cannot proceed further with getting chart list for instance:
problem observed as reported on Superset 3.1.3, and fixed as recommended with installing PyJWT==2.9.0. So still looks like new PyJWT 2.10.0 release can cause some problems with Superset API access. |
{'msg': 'Subject must be a string'}
We re-generated the value for |
Summary
EvaluationBecause Apache Superset is based on Flask-AppBuilder, which in turn pulls in Flask-JWT-Extended, we guess the most recent release 4.7.1 resolves this problem already. |
We can still observe the problem, even after upgrading to Flask-JWT-Extended 4.7.1. $ uv pip install --upgrade "PyJWT>=2.10" "Flask-JWT-Extended>=4.7.1" "Flask<3"
- flask-jwt-extended==4.7.0
+ flask-jwt-extended==4.7.1 pytest -k api response = requests.delete(resource_to_delete, headers=get_auth_headers())
> assert response.status_code in [200, 404], response.json()
E AssertionError: {'msg': 'Subject must be a string'}
E assert 422 in [200, 404]
E + where 422 = <Response [422]>.status_code
conftest.py:74: AssertionError |
Have you configured flask-jwt-extended to not verify the sub claim? 'JWT_VERIFY_SUB=False' |
Thank you so much for your quick response, @jlucier. Actually, we are just approaching this problem as users of Apache Superset, not having any knowledge about its code base and its dependencies at all, other than knowing a bit about Flask. We found that Flask-JWT-Extended is being used by Flask-AppBuilder, so this is probably the right spot to address this configuration update needed for the most recent PyJWT library? In this spirit, we figure creating a corresponding issue over there makes sense? Please correct me if I am wrong with my evaluations. /cc @dpgaspar |
Since my patch, this isn't a problem with flask-jwt-extended anymore. If you don't want enforce that the sub claim is a string, you just need to configure 'JWT_VERIFY_SUB' to be False. That's your choice to make, not the library's. |
As a user of Apache Superset, I In this case, I guess it will be the concern of Flask-AppBuilder to configure Flask-JWT-Extended correctly, that's why I created a ticket there, but I may be wrong. Please educate me where you see a flaw in my thinking, as I don't have any strong knowledge of the subsystems we are talking about. |
All right, I wasn't aware that After getting it right, this update perfectly resolves the problem we have been observing. Thank you so much! 💯 |
Bug description
When setting up a fresh sandbox environment, PyJWT 2.10 gets installed, released on Nov 17, i.e. three days ago. That breaks a little integration test suite we are running 1. This is the exception being raised:
When downgrading to use
pyjwt<2.10
, the test suite succeeds again.You may want to accompany this by potentially adjusting dependencies or code in Apache Superset?
Superset version
3.x and 4.x
Additional context
The software test suite maintained here can be used to reproduce the problem.
We added relevant details to this ticket, where we started to investigate this issue.
Checklist
Footnotes
... which orchestrates CLI invocations of the
superset
program and HTTP calls to the Superset API, in order to validate it works well together with CrateDB. ↩The text was updated successfully, but these errors were encountered: