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
File "/home/azureuser/polis-ctto/polis.server/polis/routers/auth.py", line 72, in login
access_token = create_access_token({"sub": user.username}, settings)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/azureuser/polis-ctto/polis.server/polis/routers/auth.py", line 51, in create_access_token
encoded_jwt = jwt.encode(
^^^^^^^^^^
AttributeError: module 'jwt' has no attribute 'encode'
Solution
found jwt but correct package should be PyJWT for the server's code in deployment.
RunTime Error
Solution
found
jwt
but correct package should bePyJWT
for the server's code in deployment.pip uninstall jwt python-jwt # Remove existing packages pip install PyJWT
The text was updated successfully, but these errors were encountered: