fix state variable name

This commit is contained in:
James Bardin 2018-10-31 13:43:50 -04:00
parent 8212a6a9d0
commit 718a3c400a
1 changed files with 2 additions and 2 deletions

View File

@ -399,12 +399,12 @@ func (s *GRPCProviderServer) ReadResource(_ context.Context, req *proto.ReadReso
// The old provider API used an empty id to signal that the remote // The old provider API used an empty id to signal that the remote
// object appears to have been deleted, but our new protocol expects // object appears to have been deleted, but our new protocol expects
// to see a null value (in the cty sense) in that case. // to see a null value (in the cty sense) in that case.
newConfigMP, err := msgpack.Marshal(cty.NullVal(block.ImpliedType()), block.ImpliedType()) newStateMP, err := msgpack.Marshal(cty.NullVal(block.ImpliedType()), block.ImpliedType())
if err != nil { if err != nil {
resp.Diagnostics = convert.AppendProtoDiag(resp.Diagnostics, err) resp.Diagnostics = convert.AppendProtoDiag(resp.Diagnostics, err)
} }
resp.NewState = &proto.DynamicValue{ resp.NewState = &proto.DynamicValue{
Msgpack: newConfigMP, Msgpack: newStateMP,
} }
return resp, nil return resp, nil
} }