Skip to content

Commit

Permalink
workaround for weird bug :
Browse files Browse the repository at this point in the history
ResourceConflictException: The function could not be updated due to a concurrent update operation. hashicorp/terraform-provider-aws#5154
  • Loading branch information
lambertrocher committed Aug 14, 2020
1 parent 8602360 commit fb8d33f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coworks/cws/deployer.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def init(self, **kwargs):
self._print(out, err)

def apply(self, **kwargs):
return_code, out, err = super().apply(skip_plan=True, input=False, raise_on_error=True)
return_code, out, err = super().apply(skip_plan=True, input=False, raise_on_error=True, parallelism=1)
self._print(out, err)

def destroy(self, **kwargs):
Expand Down

0 comments on commit fb8d33f

Please sign in to comment.