Skip to content

Commit

Permalink
fix: fix wrong usage unit
Browse files Browse the repository at this point in the history
  • Loading branch information
whdalsrnt committed Oct 11, 2023
1 parent b10875d commit 38adeee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spaceone/cost_analysis/manager/cost_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class CostSummaryItem(BaseModel):
data['usage_unit'] = 'Count'
data['additional_info']['Usage Type Details'] = 'HTTPS Requests'
elif usage_type.find('-Out-Bytes') > 0:
data['usage_unit'] = 'Bytes'
data['usage_unit'] = 'GB'
data['additional_info']['Usage Type Details'] = 'Transfer Out'
else:
data['usage_unit'] = 'Count'
Expand Down

0 comments on commit 38adeee

Please sign in to comment.