Skip to content

Commit

Permalink
Merge pull request #7925 from terraform-providers/t-aws_api_gateway_u…
Browse files Browse the repository at this point in the history
…sage_plan-ConflictException

test/resource/aws_api_gateway_usage_plan: Prevent intermittent ConflictException errors for concurrent deployments
  • Loading branch information
bflad authored Mar 14, 2019
2 parents 2b98691 + d3e835c commit 81ed345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_api_gateway_usage_plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ resource "aws_api_gateway_deployment" "test" {
}
resource "aws_api_gateway_deployment" "foo" {
depends_on = ["aws_api_gateway_integration.test"]
depends_on = ["aws_api_gateway_deployment.test", "aws_api_gateway_integration.test"]
rest_api_id = "${aws_api_gateway_rest_api.test.id}"
stage_name = "foo"
Expand Down

0 comments on commit 81ed345

Please sign in to comment.