From 910146b1360a29951a2ce4007ec952fd2e03298d Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Fri, 27 Oct 2023 21:06:09 +0200 Subject: [PATCH] Api v1.15.0 (#1593) * fix(chalice): fixed path analysis operator --- ee/api/chalicelib/core/product_analytics.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ee/api/chalicelib/core/product_analytics.py b/ee/api/chalicelib/core/product_analytics.py index d4d82be2e..839282e57 100644 --- a/ee/api/chalicelib/core/product_analytics.py +++ b/ee/api/chalicelib/core/product_analytics.py @@ -97,6 +97,7 @@ def path_analysis(project_id: int, data: schemas.CardPathAnalysis): for i, sf in enumerate(data.start_point): f_k = f"start_point_{i}" op = sh.get_sql_operator(sf.operator) + sf.value = helper.values_for_operator(value=sf.value, op=sf.operator) is_not = sh.is_negation_operator(sf.operator) event_column = JOURNEY_TYPES[sf.type]['column'] event_type = JOURNEY_TYPES[sf.type]['eventType']