Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected PolarisTestMetaStoreManager createPolarisTestMetaStoreManager() {
new PolarisEclipseLinkMetaStoreSessionImpl(
store, Mockito.mock(), realmContext, null, "polaris", RANDOM_SECRETS);
TransactionalMetaStoreManagerImpl metaStoreManager =
new TransactionalMetaStoreManagerImpl(clock);
new TransactionalMetaStoreManagerImpl(clock, diagServices);
PolarisCallContext callCtx = new PolarisCallContext(realmContext, session, diagServices);
return new PolarisTestMetaStoreManager(metaStoreManager, callCtx);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected PrincipalSecretsGenerator secretsGenerator(
* into the existing realm-based setup flow.
*/
protected PolarisMetaStoreManager createNewMetaStoreManager(Clock clock) {
return new TransactionalMetaStoreManagerImpl(clock);
return new TransactionalMetaStoreManagerImpl(clock, diagnostics);
}

private void initializeForRealm(
Expand Down
Loading