From 7c5c21fd3b2d94bd8edb8fc6bf6461bfe4b3ea9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 29 Dec 2020 12:05:35 +0100 Subject: [PATCH] reduce delay between mails (taken from change made on server) --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.py b/util.py index 988279d..e7a4604 100644 --- a/util.py +++ b/util.py @@ -45,7 +45,7 @@ def strip_string(str): # is to try to make the sequence of mails we send out in order # actually get delivered in order. The waiting is done in a forked # subprocess and doesn't stall completion of the main script. -EMAIL_DELAY = 5 +EMAIL_DELAY = 0.02 # Some line that can never appear in any email we send out EMAIL_BOUNDARY="---@@@--- labs-git-email ---@@@---\n"