forked from Deuxfleurs/garage
lifecycle worker: take into account disabled rules
This commit is contained in:
parent
5fad4c4658
commit
b2f679675e
1 changed files with 5 additions and 1 deletions
|
@ -243,11 +243,15 @@ async fn process_object(
|
||||||
.and_then(|s| s.lifecycle_config.get().as_deref())
|
.and_then(|s| s.lifecycle_config.get().as_deref())
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
if lifecycle_policy.is_empty() {
|
if lifecycle_policy.iter().all(|x| !x.enabled) {
|
||||||
return Ok(Skip::SkipBucket);
|
return Ok(Skip::SkipBucket);
|
||||||
}
|
}
|
||||||
|
|
||||||
for rule in lifecycle_policy.iter() {
|
for rule in lifecycle_policy.iter() {
|
||||||
|
if !rule.enabled {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if let Some(pfx) = &rule.filter.prefix {
|
if let Some(pfx) = &rule.filter.prefix {
|
||||||
if !object.key.starts_with(pfx) {
|
if !object.key.starts_with(pfx) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue