Skip to content

Commit

Permalink
fix cfnUpdate
Browse files Browse the repository at this point in the history
  • Loading branch information
hoegertn committed Sep 5, 2018
1 parent c9cd5bf commit 2482b5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -619,9 +619,12 @@ ec2ShareAmi(
# Changelog

## current master

## 1.31
* handle throttles from cloudformation stackset operations
* fixed regression in cfnUpdate

## 1.30
## 1.30 (*use >= 1.31!!*)
* allow the customization of setting a roleSessionName
* content encoding can be specified in `s3Upload` step
* allow configuration of cloudformation stack timeout
Expand Down
Expand Up @@ -143,7 +143,7 @@ public void update(String templateBody, String templateUrl, Collection<Parameter

this.client.updateStack(req);

new EventPrinter(this.client, this.listener).waitAndPrintStackEvents(this.stack, this.client.waiters().stackCreateComplete(), pollConfiguration);
new EventPrinter(this.client, this.listener).waitAndPrintStackEvents(this.stack, this.client.waiters().stackUpdateComplete(), pollConfiguration);

this.listener.getLogger().format("Updated CloudFormation stack %s %n", this.stack);

Expand Down

0 comments on commit 2482b5b

Please sign in to comment.