From fdc8c0cd66f6c4662e60b3a7259b792848deb747 Mon Sep 17 00:00:00 2001 From: Hemna Date: Wed, 6 Oct 2021 12:12:49 -0400 Subject: [PATCH] Increase email delay to +10 This patch updates the increasing of the email check delay to += 10 seconds instead of +1. --- aprsd/plugins/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/plugins/email.py b/aprsd/plugins/email.py index a8a297a..ffd9c32 100644 --- a/aprsd/plugins/email.py +++ b/aprsd/plugins/email.py @@ -575,7 +575,7 @@ class APRSDEmailThread(threads.APRSDThread): # slowly increase delay every iteration, max out at 300 seconds # any send/receive/resend activity will reset this to 60 seconds if EmailInfo().delay < 300: - EmailInfo().delay += 1 + EmailInfo().delay += 10 LOG.debug( f"check_email_delay is {EmailInfo().delay} seconds ", )