We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Before barcelona deploys a new version, it checks statuses of all stacks (for services)
barcelona/app/jobs/deploy_runner_job.rb
Line 46 in 1b94dbb
While it is necessary to check it, calling DescribeStacks for each service is unnecessary because DescribeStacks returns all stacks if StackName is not specified https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.html
DescribeStacks
StackName
We can optimize that line so that barcelona calls DescribeStacks only once per deployment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Before barcelona deploys a new version, it checks statuses of all stacks (for services)
barcelona/app/jobs/deploy_runner_job.rb
Line 46 in 1b94dbb
While it is necessary to check it, calling
DescribeStacks
for each service is unnecessary becauseDescribeStacks
returns all stacks ifStackName
is not specified https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_DescribeStacks.htmlWe can optimize that line so that barcelona calls
DescribeStacks
only once per deploymentThe text was updated successfully, but these errors were encountered: