check for a nil diff in simpleDiff

This commit is contained in:
James Bardin 2018-10-19 14:25:20 -04:00
parent c7df8bef39
commit d50a152f8b
1 changed files with 7 additions and 7 deletions

View File

@ -320,6 +320,11 @@ func (r *Resource) simpleDiff(
return instanceDiff, err
}
if instanceDiff == nil {
log.Printf("[DEBUG] Instance Diff is nil in SimpleDiff()")
return nil, err
}
// Make sure the old value is set in each of the instance diffs.
// This was done by the RequiresNew logic in the full legacy Diff.
for k, attr := range instanceDiff.Attributes {
@ -331,14 +336,9 @@ func (r *Resource) simpleDiff(
}
}
if instanceDiff != nil {
if err := t.DiffEncode(instanceDiff); err != nil {
log.Printf("[ERR] Error encoding timeout to instance diff: %s", err)
}
} else {
log.Printf("[DEBUG] Instance Diff is nil in Diff()")
if err := t.DiffEncode(instanceDiff); err != nil {
log.Printf("[ERR] Error encoding timeout to instance diff: %s", err)
}
return instanceDiff, err
}