Skip to content

Commit

Permalink
units
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens committed Aug 18, 2024
1 parent e0dc473 commit a9c72f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion koku/api/report/test/util/model_bakery_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,8 @@ def load_openshift_on_cloud_data(self, provider_type, cluster_id, bills, report_
with dbaccessor(self.schema) as accessor:
# update tags
cls_method = getattr(accessor, tags_update_method)
cls_method([bill.id for bill in bills], self.first_start_date, self.last_end_date, report_period)
for report_period in report_periods:
cls_method([bill.id for bill in bills], self.first_start_date, self.last_end_date, report_period.id)

# update ui tables
sql_params = {
Expand Down

0 comments on commit a9c72f3

Please sign in to comment.