Skip to content

Commit 318dc3b

Browse files
authored
minor GCP cost model fix (#5157)
1 parent a84b5b2 commit 318dc3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

koku/masu/processor/tasks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -883,9 +883,9 @@ def update_cost_model_costs(
883883
None
884884
885885
"""
886-
# Override cost model start date to calculate costs for full month
886+
# Override cost model start date str to calculate costs for full month
887887
LOG.info("overriding cost model start date to process full month")
888-
start_date = DateHelper().month_start(start_date)
888+
start_date = DateHelper().month_start(start_date).strftime("%Y-%m-%d")
889889
task_name = "masu.processor.tasks.update_cost_model_costs"
890890
cache_args = [schema_name, provider_uuid, start_date, end_date]
891891
if not synchronous:

0 commit comments

Comments
 (0)