refactor: stabilize heal format recovery integration tests (#1984)

Co-authored-by: houseme <housemecn@gmail.com>
This commit is contained in:
安正超
2026-02-27 15:26:19 +08:00
committed by GitHub
parent 3433dfa88e
commit 9d2b8822cf
26 changed files with 849 additions and 125 deletions
+6 -4
View File
@@ -157,22 +157,24 @@ impl CacheInner {
// todo
pub fn is_allowed_sts(&self, _args: &Args, _parent: &str) -> bool {
warn!("unimplement is_allowed_sts");
warn!("policy cache STS check path is not implemented");
false
}
// todo
pub fn is_allowed_service_account(&self, _args: &Args, _parent: &str) -> bool {
warn!("unimplement is_allowed_sts");
warn!("policy cache service account check path is not implemented");
false
}
pub fn is_allowed(&self, _args: Args) -> bool {
todo!()
warn!("policy cache is_allowed check path is currently denied by default");
false
}
pub fn policy_db_get(&self, _name: &str, _groups: &[String]) -> Vec<String> {
todo!()
warn!("policy cache policy_db_get is not implemented, returning empty policy set");
vec![]
}
}