mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
Use generator in Mailbox.get_mail to limit memory leak
This commit is contained in:
parent
9f8d653ada
commit
31ccd2e4aa
3 changed files with 4 additions and 5 deletions
|
|
@ -66,7 +66,7 @@ class EmailMessageTestCase(TestCase):
|
|||
raise EmailIntegrationTimeout()
|
||||
messages = self.mailbox.get_new_mail(condition)
|
||||
if messages:
|
||||
return messages
|
||||
return list(messages)
|
||||
time.sleep(5)
|
||||
|
||||
def _get_email_as_text(self, name):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue