From e70522f4cacf27bbdacd8937c080641d73a54fce Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 18 Aug 2014 15:46:26 -0700 Subject: [PATCH] helper/schema: if you can't find the list, just fall through to return nil --- helper/schema/schema.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helper/schema/schema.go b/helper/schema/schema.go index a7cbc82df..43fb2b050 100644 --- a/helper/schema/schema.go +++ b/helper/schema/schema.go @@ -224,6 +224,8 @@ func (m schemaMap) diffList( if !schema.Computed { return nil } + + return nil } // We have to use reflection to build the []interface{} list