I'm using FlaskBootStrapSecurity project which uses Flask Security. I have a situation where the flask.ext.security current_user has the same uuid for 2 users.
For example,
- I log in with one user
- print
current_user.uuid
- log out
- log in with a different user
- print
current_user.uuid
and it is the same value for both users.
This occurs when I deploy to nginx
but not when I run with python manage.py runserver
.