Skip to content

Commit

Permalink
fix(backend): change fail_silently in sending email to False
Browse files Browse the repository at this point in the history
  • Loading branch information
Adibov committed Dec 6, 2023
1 parent 0bbdc8f commit 4372d17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/backend_api/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(self):
has_send = False
for i in range(self._MAXIMUM_RETRIES):
try:
email.send(fail_silently=True)
email.send(fail_silently=False)
has_send = True
break
except Exception as e:
Expand Down

0 comments on commit 4372d17

Please sign in to comment.