From f9c523a5a5ef7c4cc9befba125448ff32d31dfa4 Mon Sep 17 00:00:00 2001 From: Kraiem Taha Yassine Date: Fri, 8 Jul 2022 17:52:17 +0200 Subject: [PATCH] Api v1.7.0 hotfix --- api/chalicelib/core/resources.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/chalicelib/core/resources.py b/api/chalicelib/core/resources.py index 11c07e854..9a4e46ff6 100644 --- a/api/chalicelib/core/resources.py +++ b/api/chalicelib/core/resources.py @@ -25,7 +25,6 @@ def get_by_session_id(session_id, project_id, start_ts, duration): AND resources.timestamp<=%(res_end_ts)s;""" params = {"session_id": session_id, "project_id": project_id, "start_ts": start_ts, "duration": duration, "res_start_ts": start_ts - delta, "res_end_ts": start_ts + duration + delta, } - print(cur.mogrify(ch_query, params)) cur.execute(cur.mogrify(ch_query, params)) rows = cur.fetchall() return helper.list_to_camel_case(rows)