Is it possible to release the Lock-Delay on an instance which session got invalidated

I have this LeaderElection case where I use the Lock-Delay so I don’t run into issues with two leaders.
When the current Leader gets its session invalidated because of healthchecks, I find no way to release the lock-delay programatically, all the remaining non-leaders need to wait for the Lock-Delay. Is there a way to clear the lock-delay once the current invalidated leader detects that?

Is there a configurable parameter in the leader election framework that allows for adjusting or disabling the lock-delay in specific scenarios, such as session invalidation due to health check?

Well, Lock-Delay is specified the moment the session is created, hence this is not something you can change dynamically.