the plugin launcher tool was passing the wrong byte array into

SetConfig, resulting in msgpack decoding errors
This commit is contained in:
Chris Baker
2019-11-19 14:53:34 +00:00
parent c9b281dc16
commit 2dfced01e5

View File

@@ -209,7 +209,7 @@ func (c *Device) setConfig(spec hcldec.Spec, apiVersion string, config []byte, n
}
req := &base.Config{
PluginConfig: config,
PluginConfig: cdata,
AgentConfig: nmdCfg,
ApiVersion: apiVersion,
}