updates #207
| @@ -3,6 +3,8 @@ package codec | ||||
|  | ||||
| import ( | ||||
| 	"errors" | ||||
|  | ||||
| 	"gopkg.in/yaml.v3" | ||||
| ) | ||||
|  | ||||
| var ( | ||||
| @@ -66,10 +68,10 @@ func (m *RawMessage) MarshalYAML() ([]byte, error) { | ||||
| } | ||||
|  | ||||
| // UnmarshalYAML sets *m to a copy of data. | ||||
| func (m *RawMessage) UnmarshalYAML(data []byte) error { | ||||
| func (m *RawMessage) UnmarshalYAML(n *yaml.Node) error { | ||||
| 	if m == nil { | ||||
| 		return errors.New("RawMessage UnmarshalYAML on nil pointer") | ||||
| 	} | ||||
| 	*m = append((*m)[0:0], data...) | ||||
| 	*m = append((*m)[0:0], []byte(n.Value)...) | ||||
| 	return nil | ||||
| } | ||||
|   | ||||
| @@ -1,5 +1,7 @@ | ||||
| package codec | ||||
|  | ||||
| import "gopkg.in/yaml.v3" | ||||
|  | ||||
| // Frame gives us the ability to define raw data to send over the pipes | ||||
| type Frame struct { | ||||
| 	Data []byte | ||||
| @@ -26,8 +28,9 @@ func (m *Frame) MarshalYAML() ([]byte, error) { | ||||
| } | ||||
|  | ||||
| // UnmarshalYAML set frame data | ||||
| func (m *Frame) UnmarshalYAML(data []byte) error { | ||||
| 	return m.Unmarshal(data) | ||||
| func (m *Frame) UnmarshalYAML(n *yaml.Node) error { | ||||
| 	m.Data = []byte(n.Value) | ||||
| 	return nil | ||||
| } | ||||
|  | ||||
| // ProtoMessage noop func | ||||
|   | ||||
		Reference in New Issue
	
	Block a user