From ef98d21190b28674f49a29935610cde666fbfd1a Mon Sep 17 00:00:00 2001 From: Corey Goodfred Date: Mon, 8 Jan 2024 11:04:55 -0500 Subject: [PATCH] [COST-3814] use isoformat for timestamp (#4858) --- koku/subs/subs_data_messenger.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koku/subs/subs_data_messenger.py b/koku/subs/subs_data_messenger.py index 51f5f8cdc0..9bb490546b 100644 --- a/koku/subs/subs_data_messenger.py +++ b/koku/subs/subs_data_messenger.py @@ -176,8 +176,8 @@ def process_azure_row(self, row): msg = self.build_subs_msg( instance_id, row["subs_account"], - str(start), - str(end), + start.isoformat(), + end.isoformat(), row["subs_vcpu"], row["subs_sla"], row["subs_usage"],