adutra commented on code in PR #1414:
URL: https://github.com/apache/polaris/pull/1414#discussion_r2052452194
##########
service/common/src/main/java/org/apache/polaris/service/persistence/InMemoryPolarisMetaStoreManagerFactory.java:
##########
@@ -89,12 +89,12 @@ public synchronized Supplier<TransactionalPersistence>
getOrCreateSessionSupplie
RealmContext realmContext) {
String realmId = realmContext.getRealmIdentifier();
if (!bootstrappedRealms.contains(realmId)) {
- bootstrapRealmsAndPrintCredentials(List.of(realmId));
+ bootstrapRealmsFromEnvironment(List.of(realmId));
}
return super.getOrCreateSessionSupplier(realmContext);
}
- private void bootstrapRealmsAndPrintCredentials(List<String> realms) {
+ private void bootstrapRealmsFromEnvironment(List<String> realms) {
Review Comment:
Just renamed this method to better reflect its new purpose (it changed
recently).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]