From a26586e718aab08948a29072332442b65c48b762 Mon Sep 17 00:00:00 2001 From: Beppe Catanese Date: Thu, 7 Mar 2024 16:33:07 +0100 Subject: [PATCH] Respond with 202 status code --- 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():