This commit is contained in:
cui 2026-05-23 13:57:09 +00:00 committed by GitHub
commit d8e275ae85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -234,6 +234,8 @@ func (t *muxTracer) GetResult() (json.RawMessage, error) {
// Stop terminates execution of the tracer at the first opportune moment.
func (t *muxTracer) Stop(err error) {
for _, t := range t.tracers {
t.Stop(err)
if t.Stop != nil {
t.Stop(err)
}
}
}