From 59f07cfa158af273a7aebf908c0917b9bea40474 Mon Sep 17 00:00:00 2001 From: Noe Date: Mon, 22 Jan 2024 15:20:58 +0100 Subject: [PATCH] update await functions --- csharp/App/SaliMax/src/AggregationService/Aggregator.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs index 71fa78c80..2cb001661 100644 --- a/csharp/App/SaliMax/src/AggregationService/Aggregator.cs +++ b/csharp/App/SaliMax/src/AggregationService/Aggregator.cs @@ -68,8 +68,8 @@ public static class Aggregator dailyAggregatedData.Save("DailyData"); if (await dailyAggregatedData.PushToS3()) { - //DeleteHourlyData("HourlyData",currentTime.ToUnixTime()); - //dailyAggregatedData.DeleteDailyData("DailyData"); + DeleteHourlyData("HourlyData",currentTime.ToUnixTime()); + dailyAggregatedData.DeleteDailyData("DailyData"); } }