From a65553e13ad5aec6df379ed9dddb934767188800 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 30 Aug 2024 17:38:16 +0200 Subject: [PATCH] removed apply_aggregation check [aggregator cannot be ready if apply_aggregation is False] --- dap/algos/aggregation.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/dap/algos/aggregation.py b/dap/algos/aggregation.py index 19a741d..87987fd 100644 --- a/dap/algos/aggregation.py +++ b/dap/algos/aggregation.py @@ -51,12 +51,7 @@ def calc_aggregate(results, data, aggregator): def calc_aggregation_ready(results, aggregator): - apply_aggregation = results.get("apply_aggregation", False) - if not apply_aggregation: - return False - aggregation_max = results.get("aggregation_max") - if not aggregator.is_ready(aggregation_max): return False