Skip to content

Commit

Permalink
Remove short timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnGrubba committed Nov 10, 2024
1 parent bc93d20 commit 4a5a6f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import threading
import queue

smtp = smtplib.SMTP_SSL(EmailConfig.smtp_host, EmailConfig.smtp_port, timeout=1)
smtp = smtplib.SMTP_SSL(EmailConfig.smtp_host, EmailConfig.smtp_port)
email_queue = queue.Queue()


Expand Down

0 comments on commit 4a5a6f1

Please sign in to comment.