Properly default idle heartbeat during setter.#1580
Conversation
Null is a better default.
|
@claude review |
|
Claude finished @scottf's task in 1m 32s —— View job Code ReviewTasks:
SummaryThe change is in The fix is correct. Both FindingMinor inconsistency: the
public Builder idleHeartbeat(long idleHeartbeatMillis) {
if (idleHeartbeatMillis <= DURATION_UNSET_LONG) {
this.idleHeartbeat = DURATION_UNSET; // ← still Duration.ZERO, not null
}The VerdictThe core change is correct and an improvement. The only suggestion is to apply the same |
Null is a better default.