Project

General

Profile

Bug #46485

Updated by Nathan Cutler almost 4 years ago

master needs the following patch in <code>src/rgw/rgw_lc.cc</code>  

 <pre> 
 @@ -454,6 +454,8 @@ static inline bool has_all_tags(const lc_op& rule_action, 
    for (const auto& tag : object_tags.get_tags()) { 
      const auto& rule_tags = rule_action.obj_tags->get_tags(); 
      const auto& iter = rule_tags.find(tag.first); 
 +      if(iter == rule_tags.end()) 
 +          continue; 
      if(iter->second == tag.second) 
      { 
        tag_count++; 
 </pre> 

 Patch taken from https://github.com/ceph/ceph/pull/35996 which could not be considered initially because it was opened against the wrong branch.

Back