refactor(obs): use lifecycle runtime facades (#4031)

This commit is contained in:
Zhengchao An
2026-06-29 09:29:50 +08:00
committed by GitHub
parent ed56ffb54a
commit ea88f5b67b
8 changed files with 40 additions and 29 deletions
+2 -2
View File
@@ -379,11 +379,11 @@ pub(crate) fn tier_config_mgr_handle() -> Arc<RwLock<TierConfigMgr>> {
GLOBAL_TierConfigMgr.clone()
}
pub(crate) fn expiry_state_handle() -> Arc<RwLock<ExpiryState>> {
pub fn expiry_state_handle() -> Arc<RwLock<ExpiryState>> {
GLOBAL_ExpiryState.clone()
}
pub(crate) fn transition_state_handle() -> Arc<TransitionState> {
pub fn transition_state_handle() -> Arc<TransitionState> {
GLOBAL_TransitionState.clone()
}