Эх сурвалжийг харах

fix: more accurate panic message on mapreduce (#2311)

Kevin Wan 2 жил өмнө
parent
commit
d978563523
1 өөрчлөгдсөн 2 нэмэгдсэн , 0 устгасан
  1. 2 0
      core/mr/mapreduce.go

+ 2 - 0
core/mr/mapreduce.go

@@ -212,6 +212,8 @@ func mapReduceWithPanicChan(source <-chan interface{}, panicChan *onceChan, mapp
 		cancel(context.DeadlineExceeded)
 		return nil, context.DeadlineExceeded
 	case v := <-panicChan.channel:
+		// drain output here, otherwise for loop panic in defer
+		drain(output)
 		panic(v)
 	case v, ok := <-output:
 		if err := retErr.Load(); err != nil {