-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Task, that was working yesterday, started to fail today in 20210131.1, the same code #2630
Comments
Hello @nanvel, |
@Darleev reproducing the same error: https://github.com/nanvel/virtual_environments_2630/runs/1838322866 |
I am having a similar problem with a Swift 5/Vapor 4 application (it's inexplicably having postgres connection failures when testing). Passing tests under 20210123.1 are now failing under 20210131.1 (and still passing locally on macOS using Xcode). I can try and build a minimal test case if I get time. |
Are you connecting to your databases with the hostnames We at Prisma suddenly could not connect to local databases running via Docker on our Github Actions workflows, and think it was caused by Docker not binding IPv6 by default any more since Docker Engine 20.10.2 which is part of the
Here is our description of the problem on our side: prisma/prisma#5499 Turned out Prisma was not doing the right thing when trying to resolve Buuuut this is of course still a bug on the Docker side, or at least a unexpected breaking change. This seems to be one of the reports of this problem on the Docker side: moby/moby#41858 There are multiple issues and PRs from January that sounds related. |
Confirming that replacing |
And I think I have a rather minimal reproduction: This repo starts MSSQL via Docker Compose, shows the problem with |
Indeed, 127.0.0.1 solved my problem. |
Ugh, that is just a workaround. Could you leave this issue open so someone from GH possible sees and can fix the issue to work properly again? Would appreciate it. |
We are also experiencing issues with tests that worked last week and now they failing. Also rerun a workflow from 2 weeks ago that passed and they also failed.
|
Now that we upgrade our own software a bit, we can also explicitly show that with the updated Docker from that image, |
Hello, |
Description
This workflow: https://github.com/nanvel/tb-manager/actions/runs/536216335
Yesterday it was passing.
Today I restarted it, and it fails.
I did checkout from the revision, created another branch, pushed, and - the same issue.
Errors in pytest while connectiong to postgres service (using aiopg):
The only difference I see is environment version: 20210131.1
The tests were passing on 20210123.1.
Postgres service seems to works ok, as I see that my migrations are executed by alembic.
Area for Triage:
Python
Question, Bug, or Feature?:
Bug
Virtual environments affected
Image version
20210131.1
Expected behavior
My pytests passing.
Actual behavior
My pytest are not passing since today.
Repro steps
An aiohttp server that uses aiopg to connect to postgresql database.
I can create a small example if it is necessary.
The text was updated successfully, but these errors were encountered: