Skip to content

Commit

Permalink
expose start lock manager
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar committed Sep 15, 2024
1 parent 31d12a8 commit 5cd4c82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.nucleodb'
version = '1.18.5'
version = '1.18.6'

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/nucleodb/library/NucleoDB.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public NucleoDB(DBType dbType, String readToTime, Consumer<ConnectionConsumer> c
startConnections(packagesToScan, dbType, readToTime, connectionCustomizer);
}

private void startLockManager(Consumer<LockConfig> customizer) throws IntrospectionException, InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
public void startLockManager(Consumer<LockConfig> customizer) throws IntrospectionException, InvocationTargetException, NoSuchMethodException, InstantiationException, IllegalAccessException {
LockConfig config = new LockConfig();
CountDownLatch lockManagerStartupComplete = new CountDownLatch(1);
config.setStartupRun(new StartupRun() {
Expand Down

0 comments on commit 5cd4c82

Please sign in to comment.