Closed wugang8068 closed 3 years ago
The source code is below, but I don't know the reason.
func (s *spanImpl) Annotate(t time.Time, value string) { a := model.Annotation{ Timestamp: t, Value: value, } s.mtx.Lock() s.Annotations = append(s.Annotations, a) s.mtx.Unlock() }
Is it possible you are trying to Annotate a span while Finish on that span is called concurrently?
Closing due to inactivity and unable to replicate in proper usage patterns.
The source code is below, but I don't know the reason.