-
Notifications
You must be signed in to change notification settings - Fork 2k
Upgrade aiohttp #9348
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
Upgrade aiohttp #9348
Conversation
Database credentials don't work anymore? I haven't touched those in the PR.. |
@NateBrady23 or anyone know what to change for the DB credentials? Would be good to get this upgrade in as there's been a lot of performance optimisations in recent releases (though they may be a magnitude more noticeable in real world scenarios than these simple benchmarks). |
Could it be an issue with the authentication method (issue #8061 might be related)? |
I'm unclear. We just create a DSN with user/password, so I don't see anything we'd need to change for that:
Appears that asyncpg implemented the auth method 6 years ago, so I doubt it's an issue there either.. |
Yes, but the point is that the password is not necessarily sent in cleartext to the server - see here. Just an idea, since you were asking for suggestions. |
The issues here don't SEEM to be related to the md5 issue... closing for now, but feel free to open a new PR when you get the issues resolved. |
I don't have the time to figure out and test locally what is going wrong with your test suite, nothing has changed on the code side.. |
It doesn't run successfully locally or in CI with your changes https://github.com/TechEmpower/FrameworkBenchmarks/actions/runs/13909801752/job/38921326418?pr=9348 Currently, on main aiohttp verifies successfully. This may be related to #7557 since the only changes that would result in the password authentication failing given your changes appear to be the db driver versions being updated. Maybe these new versions disabled md5 auth? |
Ahhh, I didn't realise it was still working on master. Apparently sqlalchemy changed rendering of URL objects. This should be good to merge now. |
No description provided.