mirror of https://github.com/apache/kafka.git
[Minor] fix new consumer heartbeat reschedule bug
This commit is contained in:
parent
4fcb7acafe
commit
6eb7ec648f
|
@ -272,7 +272,7 @@ public final class Coordinator {
|
|||
|
||||
@Override
|
||||
public void onFailure(RuntimeException e) {
|
||||
client.schedule(HeartbeatTask.this, retryBackoffMs);
|
||||
client.schedule(HeartbeatTask.this, time.milliseconds() + retryBackoffMs);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue