Merge pull request #21911 from Biteable/no-nopop-in-plan-show

Fixes #21907
This commit is contained in:
Pam Selle 2019-07-12 13:49:50 -04:00 committed by GitHub
commit 1666df3668
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ func NewPlan(changes *plans.Changes) *Plan {
continue
}
if rc.Action == plans.NoOp {
continue
}
// For now we'll shim this to work with our old types.
// TODO: Update for the new plan types, ideally also switching over to
// a structural diff renderer instead of a flat renderer.