You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have recently seen an issue where our Elastic Beanstalk deployment failed, however the build reported that the deployment was successful. We are using version the latest version of the plugin, v0.3.19, with a ten second sleep between status checks, 30 attempts to check the status and we have checked "Ensure Health is Green after deploy?"
In the logs we can see that all 30 of our health status checks complete without the status going green. There is then an Environment Update timed-out. Aborting message, a clean up message and then Finished: SUCCESS
I suspect the root cause of this is that no exception is thrown when all 30 checks complete and then the line below swallows up the boolean status, and exits normally. There should probably be a check on the returned value and an exception thrown if true is returned from the perform() method. Either that or an appropriate exception is thrown on the final check.
Hi,
I have recently seen an issue where our Elastic Beanstalk deployment failed, however the build reported that the deployment was successful. We are using version the latest version of the plugin, v0.3.19, with a ten second sleep between status checks, 30 attempts to check the status and we have checked "Ensure Health is Green after deploy?"
In the logs we can see that all 30 of our health status checks complete without the status going green. There is then an Environment Update timed-out. Aborting message, a clean up message and then Finished: SUCCESS
I suspect the root cause of this is that no exception is thrown when all 30 checks complete and then the line below swallows up the boolean status, and exits normally. There should probably be a check on the returned value and an exception thrown if true is returned from the perform() method. Either that or an appropriate exception is thrown on the final check.
awseb-deployment-plugin/src/main/java/br/com/ingenieux/jenkins/plugins/awsebdeployment/AWSEBDeploymentBuilder.java
Line 193 in 9ae5af4
Here is an extract of the logs
The text was updated successfully, but these errors were encountered: