Skip to content

Commit

Permalink
Merge pull request #103 from ImMin5/master
Browse files Browse the repository at this point in the history
feat: modify filter temporary tags from azure contain '.' at key field
  • Loading branch information
ImMin5 authored Oct 4, 2024
2 parents f83d383 + 792e845 commit d945f17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cloudforet/cost_analysis/manager/cost_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ def _convert_tags_str_to_dict(tags_str: Union[str, None]) -> dict:
tags_info: dict = json.loads(tags_str)

for key in tags_info.keys():
if "." not in key:
if len(key.split(".")) == 1:
tags[key] = tags_info[key]

return tags
Expand Down

0 comments on commit d945f17

Please sign in to comment.