We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a84b5b2 commit 318dc3bCopy full SHA for 318dc3b
koku/masu/processor/tasks.py
@@ -883,9 +883,9 @@ def update_cost_model_costs(
883
None
884
885
"""
886
- # Override cost model start date to calculate costs for full month
+ # Override cost model start date str to calculate costs for full month
887
LOG.info("overriding cost model start date to process full month")
888
- start_date = DateHelper().month_start(start_date)
+ start_date = DateHelper().month_start(start_date).strftime("%Y-%m-%d")
889
task_name = "masu.processor.tasks.update_cost_model_costs"
890
cache_args = [schema_name, provider_uuid, start_date, end_date]
891
if not synchronous:
0 commit comments