CNES / ccsdsmo-malgo

CCSDS MO MAL Go API
https://cnes.github.io/ccsdsmo-malgo
MIT License
10 stars 1 forks source link

Bug in COM Event Service #7

Closed etiennelndr closed 6 years ago

etiennelndr commented 6 years ago

In the function monitorEventPublish of the COM Event Service you use the method Encode to encode the parameter updtValues: updtValues.Encode(encoder) . I think it's better to use the method EncodeAbstractElement: updtValues.EncodeAbstractElement(encoder) because in the consumer you do updtElementlist, err := decoder.DecodeAbstractElement() to decode this element.