From 5220c1ff2af36d2249ecff3d1826af603336557a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 9 Aug 2013 16:52:59 -0700 Subject: [PATCH] packer/rpc: register map[string]string since we transfer that --- packer/rpc/init.go | 1 + 1 file changed, 1 insertion(+) diff --git a/packer/rpc/init.go b/packer/rpc/init.go index 812394425..2d763d83b 100644 --- a/packer/rpc/init.go +++ b/packer/rpc/init.go @@ -4,6 +4,7 @@ import "encoding/gob" func init() { gob.Register(new(map[string]interface{})) + gob.Register(new(map[string]string)) gob.Register(make([]interface{}, 0)) gob.Register(new(BasicError)) }