I'm trying to mplement custom LockService class like it said in this answer: https://stackoverflow.com/a/15567073/5182320
package liquibase.ext;
import liquibase.exception.DatabaseException;
import liquibase.lockservice.StandardLockService;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Configuration;
@Slf4j
@Configuration
public class TimeoutLockService extends StandardLockService {
    @SneakyThrows
    @Override
    public void waitForLock() {
        forceReleaseLock();
    }
    @Override
    public int getPriority() {
        return super.getPriority() + 1;
    }
    @Override
    public void init() throws DatabaseException {
        super.init();
        log.info("Init called");
    }
}
Placed the class in the package liquibase.ext
But when I'm running my application it's ignoring this class and still trying to acquire the lock.
