Skip to content

Commit 26a63a2

Browse files
committed
[COST-6129] Remove unnecessary delete
1 parent fe56a4f commit 26a63a2

File tree

2 files changed

+8
-30
lines changed

2 files changed

+8
-30
lines changed

koku/cost_models/serializers.py

+8-7
Original file line numberDiff line numberDiff line change
@@ -581,13 +581,14 @@ def to_representation(self, cost_model_obj):
581581
metric = rate.get("metric", {})
582582
display_data = self._get_metric_display_data(cost_model_obj.source_type, metric.get("name"))
583583
try:
584-
metric.update(
585-
{
586-
"label_metric": display_data["label_metric"],
587-
"label_measurement": display_data["label_measurement"],
588-
"label_measurement_unit": display_data["label_measurement_unit"],
589-
}
590-
)
584+
if display_data:
585+
metric.update(
586+
{
587+
"label_metric": display_data["label_metric"],
588+
"label_measurement": display_data["label_measurement"],
589+
"label_measurement_unit": display_data["label_measurement_unit"],
590+
}
591+
)
591592
except (KeyError, TypeError):
592593
LOG.error("Invalid Cost Model Metric Map", exc_info=True)
593594
raise CostModelMetricMapJSONException("Internal Error.")

koku/masu/database/ocp_report_db_accessor.py

-23
Original file line numberDiff line numberDiff line change
@@ -673,35 +673,12 @@ def populate_vm_hourly_usage_costs(
673673
"report_period": report_period_id,
674674
}
675675

676-
table_name = OCP_REPORT_TABLE_MAP["line_item_daily_summary"]
677676
LOG.info(
678677
log_json(
679678
msg=f"removing virtual machine cost model {rate_type} hourly costs from daily summary", context=ctx
680679
)
681680
)
682681

683-
tmp_sql = """
684-
DELETE FROM {{schema | sqlsafe}}.{{table | sqlsafe}}
685-
WHERE usage_start >= {{start_date}}
686-
AND usage_start <= {{end_date}}
687-
AND report_period_id = {{report_period_id}}
688-
AND cost_model_rate_type = {{rate_type}}
689-
AND source_uuid = {{source_uuid}}::uuid
690-
AND monthly_cost_type IS NULL
691-
AND all_labels ? 'vm_kubevirt_io_name'
692-
"""
693-
tmp_sql_params = {
694-
"schema": self.schema,
695-
"table": table_name,
696-
"start_date": start_date,
697-
"end_date": end_date,
698-
"report_period_id": report_period_id,
699-
"rate_type": rate_type,
700-
"source_uuid": str(provider_uuid),
701-
}
702-
703-
self._prepare_and_execute_raw_sql_query(table_name, tmp_sql, tmp_sql_params, operation="DELETE")
704-
705682
sql = pkgutil.get_data("masu.database", "trino_sql/openshift/cost_model/hourly_cost_virtual_machine.sql")
706683
sql = sql.decode("utf-8")
707684
sql_params = {

0 commit comments

Comments
 (0)