From c642092c891e87f33a449ad3e6b1153e9d9d7643 Mon Sep 17 00:00:00 2001 From: Ajin Abraham Date: Mon, 28 Aug 2023 23:08:06 -0700 Subject: [PATCH] Update slack.py --- web/slack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/slack.py b/web/slack.py index 96ce72c0..bdc5338e 100644 --- a/web/slack.py +++ b/web/slack.py @@ -16,7 +16,7 @@ def slack_post(url, slack_json): """Send slack POST.""" - requests.post(url, json=slack_json) + requests.post(url, json=slack_json, timeout=10) def slack_alert(filename, sha2, base_url, message):