From 3119c9ea1fbf2d48e27f98220242bdf58b5326e7 Mon Sep 17 00:00:00 2001 From: Beppe Catanese <1771700+gcatanese@users.noreply.github.com> Date: Thu, 7 Mar 2024 16:37:43 +0100 Subject: [PATCH] Respond with 202 status code (#52) --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index 409b05b..22f7b70 100644 --- a/app/app.py +++ b/app/app.py @@ -79,7 +79,7 @@ def webhook_notifications(): # invalid hmac: do not send [accepted] response raise Exception("Invalid HMAC signature") - return '[accepted]' + return '', 202 @app.route('/favicon.ico') def favicon():