added formating to avoid build failure

This commit is contained in:
eha sah 2025-04-14 16:27:04 -07:00
parent 2f17a68b2a
commit e464302415

View file

@ -124,10 +124,7 @@ public final class LeaseAssignmentManager {
// so reset the flag to refresh the state before processing during a restart of LAM. // so reset the flag to refresh the state before processing during a restart of LAM.
tookOverLeadershipInThisRun = false; tookOverLeadershipInThisRun = false;
managerFuture = executorService.scheduleWithFixedDelay( managerFuture = executorService.scheduleWithFixedDelay(
this::performAssignment, this::performAssignment, 0L, (int) (leaseAssignmentIntervalMillis), TimeUnit.MILLISECONDS);
0L,
(int) (leaseAssignmentIntervalMillis),
TimeUnit.MILLISECONDS);
log.info("Started LeaseAssignmentManager"); log.info("Started LeaseAssignmentManager");
return; return;
} }