diff --git a/mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/resourcecluster/TaskExecutorState.java b/mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/resourcecluster/TaskExecutorState.java index 9b75f5427..767e71842 100644 --- a/mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/resourcecluster/TaskExecutorState.java +++ b/mantis-control-plane/mantis-control-plane-server/src/main/java/io/mantisrx/master/resourcecluster/TaskExecutorState.java @@ -288,7 +288,8 @@ Duration getLastSchedulerLeasedDuration() return Duration.between(this.lastSchedulerLeased, this.clock.instant()); } - void updateLastSchedulerLeased() { + void updateLastSchedulerLeased() + { this.lastSchedulerLeased = this.clock.instant(); }