This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
Integration tests sometimes fail with Endpoint request timed out
#427
Milestone
We have started frequently seeing the
containers
test fail with the following:The other endpoints on this HttpAPI don't fail, but this one endpoint does frequently fail.
The one difference between this endpoint and the others is that it tries to make an HTTP request to one of the
cloud.Service
s. It seems that this connection must be timing out (or taking more than 30seconds - causing theHttpEndpoint
to time out).My best guess is that the containers are not ready to start accepting requests yet at the time this HttpEndpoint it invoked. I suspect this is because our change to add
wait_for_steady_state
to ECS service only handled the Update case, not the Create case. And possibly because we are now creating resource not in program order - the ECS service is getting created closer in time to when theExtraRuntimeValidation
happens, leading to occasional test failures.The text was updated successfully, but these errors were encountered: