Skip to content

Commit

Permalink
Fix stripping of OCI tag prefix (#5413)
Browse files Browse the repository at this point in the history
  • Loading branch information
esebesto authored Dec 2, 2024
1 parent 3cf4d27 commit d13d869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion koku/masu/util/oci/oci_post_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


def scrub_resource_col_name(res_col_name):
return res_col_name.lstrip("tags/").split(".")[-1]
return res_col_name.replace("tags/", "").split(".")[-1]


class OCIPostProcessor:
Expand Down

0 comments on commit d13d869

Please sign in to comment.