Skip to content

Commit

Permalink
Fixes from review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Roberts committed Apr 15, 2024
1 parent 0b224c2 commit 8927a32
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/cmd/pulumi/stack_history.go
Expand Up @@ -163,6 +163,8 @@ func displayUpdatesJSON(updates []backend.UpdateInfo, decrypter config.Decrypter
info.EndTime = makeStringRef(time.Unix(update.EndTime, 0).UTC().Format(timeFormat))
resourceChanges := make(map[string]int)
for k, v := range update.ResourceChanges {
// Filter out the the OpOutputChange events because they are pseudo
// events that shouldn't be included in the stack history
if k != deploy.OpOutputChange {
resourceChanges[string(k)] = v
}
Expand Down

0 comments on commit 8927a32

Please sign in to comment.