[Minor] fix new consumer heartbeat reschedule bug

This commit is contained in:
Jason Gustafson 2015-07-15 17:10:12 -07:00
parent 4fcb7acafe
commit 6eb7ec648f
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ public final class Coordinator {
@Override @Override
public void onFailure(RuntimeException e) { public void onFailure(RuntimeException e) {
client.schedule(HeartbeatTask.this, retryBackoffMs); client.schedule(HeartbeatTask.this, time.milliseconds() + retryBackoffMs);
} }
}); });
} }