This is an automated email from the ASF dual-hosted git repository.
adutra pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new b069591c Fix incorrect "bootstrapped" status after first request
b069591c is described below
commit b069591c19e99743ace09fdf2cfda65654728473
Author: MonkeyCanCode <[email protected]>
AuthorDate: Thu Dec 19 07:05:23 2024 -0600
Fix incorrect "bootstrapped" status after first request
---
.../polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/polaris-core/src/main/java/org/apache/polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java
b/polaris-core/src/main/java/org/apache/polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java
index 25bea896..1e2ca300 100644
---
a/polaris-core/src/main/java/org/apache/polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java
+++
b/polaris-core/src/main/java/org/apache/polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java
@@ -138,6 +138,9 @@ public abstract class
LocalPolarisMetaStoreManagerFactory<StoreType>
initializeForRealm(realmContext);
checkPolarisServiceBootstrappedForRealm(
realmContext,
metaStoreManagerMap.get(realmContext.getRealmIdentifier()));
+ } else {
+ checkPolarisServiceBootstrappedForRealm(
+ realmContext,
metaStoreManagerMap.get(realmContext.getRealmIdentifier()));
}
return sessionSupplierMap.get(realmContext.getRealmIdentifier());
}