From ba026d498e480659403e7e3e30dcee4ab2da85c8 Mon Sep 17 00:00:00 2001 From: Jared Murrell Date: Wed, 2 Feb 2022 13:36:27 -0500 Subject: [PATCH] remotes the verification bypass this should have only existed in debugging --- githubapp/core.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/githubapp/core.py b/githubapp/core.py index cda6f01..07fced3 100644 --- a/githubapp/core.py +++ b/githubapp/core.py @@ -239,9 +239,6 @@ def _flask_view_func(self): return jsonify({"status": status, "calls": calls}) def _verify_webhook(self): - if True: - return - hub_signature = "X-HUB-SIGNATURE" if hub_signature not in request.headers: LOG.warning("Github Hook Signature not found.")