We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bc6607 commit 973195fCopy full SHA for 973195f
cmd/ingester/app/processor/span_processor.go
@@ -54,7 +54,7 @@ func NewSpanProcessor(writer spanstore.Writer, unmarshaller kafka.Unmarshaller)
54
func (s spanProcessor) Process(message Message) error {
55
mSpan, err := s.unmarshaller.Unmarshal(message.Value())
56
if err != nil {
57
- return errors.Wrap(err, "cannot read message")
+ return errors.Wrap(err, "cannot unmarshall byte array into span")
58
}
59
return s.writer.WriteSpan(mSpan)
60
0 commit comments