I would like to retrieve user data from RDS whenever the API endpoint {{url}}/api/users/login
is called to authenticate users, however, I am currently having issues with retrieving data from RDS.
This is the full stacktrace of the error:
Flask==1.1.2
Flask-Cors==3.0.10
flask-marshmallow==0.14.0
Flask-Migrate==2.5.3
Flask-RESTful==0.3.8
Flask-SQLAlchemy==2.4.4
marshmallow==3.10.0
marshmallow-sqlalchemy==0.24.1
SQLAlchemy==1.4.0b1
python==3.7
Some things that I've attempted to resolve the issue but to no avail are:
I have Dockerized my application and this is my current set up:
app.py
from flask_marshmallow import Marshmallow
from flask_migrate import Migrate
from flask_sqlalchemy import SQLAlchemy
from flask_jwt_extended import JWTManager
db = SQLAlchemy()
ma = Marshmallow()
migrate = Migrate()
def register_extensions(app: Flask) -> None:
db.init_app(app)
migrate.init_app(app, db)
ma.init_app(app)
def create_application() -> Flask:
app: Flask = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = "mysql+mysqlconnector://{DB_USER}:{DB_PASSWORD}@{DB_INSTANCE}:{DB_PORT}"
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
register_extensions(app)
app.register_blueprint(users_urls.mod, url_prefix=f"/{BEP_PREFIX}/users")
return app
app = create_application()
CORS(app)
models.py
class Accounts(db.Model):
__tablename__ = 'Accounts'
username = db.Column(db.String(100), primary_key=True)
password = db.Column(db.String(256), nullable=False)
email = db.Column(db.String(255), nullable=False)
personnelID = db.Column(db.String(255), nullable=False)
userType = db.Column(db.String(45), nullable=False)
service.py
class UserService(Service):
__model__ = Accounts
def get(self, username):
return Accounts.query.filter_by(username=username).first()
user_service = UserService()
views.py
from bep.users.services import user_service
class UserLogin(Resource):
def post(self):
data = request.get_json()
try:
userData = user_service.get("test")
except Exception:
error_str = traceback.format_exc()
logger.error("This prints the stack", exc_info=True)
return UserServiceError.to_response(error=error_str, comments="Something went wrong while logging in")
The problem is a known issue in flask-sqlalchemy, caused by changes in SQLAchemy 1.4. Flask-sqlalchemy attempts to modify the SQLALchemy engine's URL, but these URLs are immutable in SQLAlchemy 1.4.
The problem is fixed in Flask-SQLAlchemy 2.5+ (changelog).
If upgrading Flask-SQLAlchemy is not possible, the issue can be worked around by specifying the SQLAlchemy version passed to pip
, either via the command line
pip install --upgrade 'SQLAlchemy<1.4'
or in requirements.txt
SQLAlchemy<1.4
SQLAlchemy 1.4 went on general release on 15 March 2021.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With