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
When I enable parallel_plan: true, this breaks Atlantis' ability to run plans in parallel as expected, with the error saying The default workspace is currently locked by another command that is running for this pull request.
Atlantis shouldn't behave this way because each environment is separate and each plan lock is based on the directory: "msg": "acquired lock with id \"terraform/environments/production/default\"",. A lock with ID terraform/environments/production/default shouldn't block Atlantis from simultaneously using another lock with ID terraform/environments/test/default.
The text was updated successfully, but these errors were encountered:
I've got a repository with multiple environments structured like this:
Each environment uses only the default workspace.
When I enable
parallel_plan: true
, this breaks Atlantis' ability to run plans in parallel as expected, with the error sayingThe default workspace is currently locked by another command that is running for this pull request.
Atlantis shouldn't behave this way because each environment is separate and each plan lock is based on the directory:
"msg": "acquired lock with id \"terraform/environments/production/default\"",
. A lock with IDterraform/environments/production/default
shouldn't block Atlantis from simultaneously using another lock with IDterraform/environments/test/default
.The text was updated successfully, but these errors were encountered: