-
Notifications
You must be signed in to change notification settings - Fork 103
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
Flaky TestAccEcsCapacityProviderService #1418
Comments
I suspect there is actually a data race in the example from a missing dependency:
|
The theory is that Looking at the dependencies from the state file. ECS service: Depends on: Which in turn depends on the target group:
Which only depends on the VPC: |
Pulumi was not recognizing that the underlying aws.ecs.Service should wait for the load balancer to be provisioned, causing a race that sporadically would flake up the test. This is now compensated by with a dependsOn option. Fixes #1418
Pulumi was not recognizing that the underlying aws.ecs.Service should wait for the load balancer to be provisioned, causing a race that sporadically would flake up the test. This is now compensated by with a dependsOn option. Fixes #1418
This issue has been addressed in PR #1441 and shipped in release v2.20.0. |
Failed with:
But restarting CI fixed the test.
The text was updated successfully, but these errors were encountered: