Bläddra i källkod

Return the response error in heartbeatLoop

`err` is always `nil`, it is checked above already.
Sebastien Lavoie 5 år sedan
förälder
incheckning
a74c07e4d6
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      consumer_group.go

+ 1 - 1
consumer_group.go

@@ -760,7 +760,7 @@ func (s *consumerGroupSession) heartbeatLoop() {
 		case ErrRebalanceInProgress, ErrUnknownMemberId, ErrIllegalGeneration:
 			return
 		default:
-			s.parent.handleError(err, "", -1)
+			s.parent.handleError(resp.Err, "", -1)
 			return
 		}