removed apply_threshold check from calc_aggregation_ready as these are independent operations

This commit is contained in:
2024-08-30 11:52:35 +02:00
parent 470aa52ff9
commit 1350093d5a

View File

@ -62,11 +62,6 @@ def calc_aggregate(results, data, aggregator):
def calc_aggregation_ready(results, data, aggregator):
apply_aggregation = results.get("apply_aggregation", False)
apply_threshold = results.get("apply_threshold", False)
if not apply_aggregation and not apply_threshold:
return False
if not apply_aggregation:
return False