Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Reintroduce Support for Concurrency (#515)
Browse files Browse the repository at this point in the history
* Remove concurrency restriction

* Add concurrency entry to CHANGELOG

---------

Co-authored-by: Aaron Lane <2400330-aaron-lane@users.noreply.gitlab.com>
  • Loading branch information
aaron-lane and Aaron Lane authored Apr 8, 2023
1 parent 8719f53 commit f837b37
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ and this project adheres to
- Dropped support for Ruby 2.7 which reached end of life on 2023-03-31.
- Dropped support for InSpec 4.X which reached end of life on some
indeterminate date.
- Support for concurrency with the following commands was reintroduced:
`create`; `converge`; `setup`; `destroy`. Be safe and test quickly!

## [6.1.0] - 2022-01-22

Expand Down
7 changes: 0 additions & 7 deletions lib/kitchen/driver/terraform.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,6 @@ module Driver
class Terraform < ::Kitchen::Driver::Base
kitchen_driver_api_version 2

no_parallel_for(
:create,
:converge,
:setup,
:destroy
)

include ::Kitchen::Terraform::ConfigAttribute::BackendConfigurations

include ::Kitchen::Terraform::ConfigAttribute::Client
Expand Down
6 changes: 0 additions & 6 deletions spec/lib/kitchen/driver/terraform_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,6 @@

it_behaves_like "Kitchen::Terraform::Configurable"

describe ".serial_actions" do
specify "actions are returned" do
expect(described_class.serial_actions).to contain_exactly(:create, :converge, :setup, :destroy)
end
end

describe "#create" do
let :create do
instance_double ::Kitchen::Terraform::Driver::Create
Expand Down

0 comments on commit f837b37

Please sign in to comment.