From 88bfbeb9c540b8236e9c46cae8f149c778f26009 Mon Sep 17 00:00:00 2001 From: James Bardin Date: Wed, 15 Aug 2018 10:48:00 -0400 Subject: [PATCH] schema version changed type --- plugin/conversions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/conversions.go b/plugin/conversions.go index 0463cf70b3..f169faf70d 100644 --- a/plugin/conversions.go +++ b/plugin/conversions.go @@ -13,7 +13,7 @@ import ( // ProtoToProviderSchema takes a proto.Schema and converts it to a providers.Schema. func ProtoToProviderSchema(s *proto.Schema) providers.Schema { return providers.Schema{ - Version: int(s.Version), + Version: uint64(s.Version), Block: schemaBlock(s.Block), } }