Sorry, I am not a GitHub user.
In pyDAL 20260313.1, there seems to be a bug in handling the python-mssql driver 1.6.0.
For example, the URI:
mssqlpython://
xxx:y...@127.0.0.1/zzz?encrypt=no&trust_server_certificate=yescauses the following error in my case:
RuntimeError: [Microsoft][ODBC Driver 18 for SQL Server][SQL Server]Login failed for user ''.
AI detected that incorrect argument names are being passed:
- self.driver_args["user"] = user
- self.driver_args["password"] = password
+ self.driver_args["UID"] = user
+ self.driver_args["PWD"] = password
Alternatively, using this directly works:
conn = mssql_python.connect(
server="127.0.0.1",
database="zzz",
port=1433,
UID="xxx",
PWD="yyy",
encrypt="no",
trust_server_certificate="yes",
)
2/
In Py4Web 1.20260403.2, trying to start gunicorn 23+ with a command similar to:
py4web run ... -s gunicorn ....
causes a gunicorn error about an invalid call argument. I am sorry, I am writing this from memory, but the problematic argument was:
reloading=False
I suspect that the entire **kwargs from the method is being passed into the gunicorn parameters.