Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
pass install.keyValueService to TKVSMF
Browse files Browse the repository at this point in the history
  • Loading branch information
rhuffy committed May 2, 2024
1 parent f7e4929 commit aaba39e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ TransactionKeyValueServiceManager create(
MetricsManager metricsManager,
CoordinationService<T> coordinationService,
KeyValueServiceManager keyValueServiceManager,
KeyValueServiceConfig sourceInstall,
TransactionKeyValueServiceConfig install,
Refreshable<TransactionKeyValueServiceRuntimeConfig> runtime,
boolean initializeAsync);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ private TransactionManager serializableInternal(@Output List<AutoCloseable> clos
lockAndTimestampServices,
internalKeyValueService,
keyValueServiceManager,
config().keyValueService(),
config().transactionKeyValueService().get(),
runtimeConfig().get().map(optionalConfig -> optionalConfig
.get()
Expand Down Expand Up @@ -656,6 +657,7 @@ private <T> TransactionKeyValueServiceManager createTransactionKeyValueServiceMa
LockAndTimestampServices lockAndTimestampServices,
KeyValueService internalTablesKeyValueService,
KeyValueServiceManager keyValueServiceManager,
KeyValueServiceConfig sourceConfig,
TransactionKeyValueServiceConfig config,
Refreshable<TransactionKeyValueServiceRuntimeConfig> runtimeConfigRefreshable,
boolean initializeAsync) {
Expand All @@ -675,6 +677,7 @@ private <T> TransactionKeyValueServiceManager createTransactionKeyValueServiceMa
metricsManager,
coordinationService,
keyValueServiceManager,
sourceConfig,
config,
runtimeConfigRefreshable,
initializeAsync);
Expand Down

0 comments on commit aaba39e

Please sign in to comment.