From 655797865ef79e840662d7c1a5bf5e16ad0c1f0c Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 31 Mar 2023 10:42:17 +0100 Subject: [PATCH 1/2] feat(DB): fixed missing enum value --- ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql | 3 ++- scripts/schema/db/init_dbs/postgresql/init_schema.sql | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql b/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql index 0418c5d7d..5265f4b00 100644 --- a/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql +++ b/ee/scripts/schema/db/init_dbs/postgresql/init_schema.sql @@ -414,7 +414,8 @@ $$ 'ml_excessive_scrolling', 'ml_slow_resources', 'custom', - 'js_exception' + 'js_exception', + 'mouse_thrashing' ); END IF; diff --git a/scripts/schema/db/init_dbs/postgresql/init_schema.sql b/scripts/schema/db/init_dbs/postgresql/init_schema.sql index 2fe532636..cd5e0e2db 100644 --- a/scripts/schema/db/init_dbs/postgresql/init_schema.sql +++ b/scripts/schema/db/init_dbs/postgresql/init_schema.sql @@ -316,7 +316,8 @@ $$ 'ml_excessive_scrolling', 'ml_slow_resources', 'custom', - 'js_exception' + 'js_exception', + 'mouse_thrashing' ); CREATE TABLE issues From 8152d9c81f9037dc8448bce88b932a6bf23b940a Mon Sep 17 00:00:00 2001 From: Taha Yassine Kraiem Date: Fri, 31 Mar 2023 10:59:22 +0100 Subject: [PATCH 2/2] feat(chalice): changed health check endpoint --- api/routers/subs/health.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/routers/subs/health.py b/api/routers/subs/health.py index fdef52509..65c39ad4f 100644 --- a/api/routers/subs/health.py +++ b/api/routers/subs/health.py @@ -6,7 +6,7 @@ from routers.base import get_routers public_app, app, app_apikey = get_routers() -@app.get('/health', tags=["health-check"]) +@app.get('/healthz', tags=["health-check"]) def get_global_health_status(): return {"data": health.get_health()}