diff options
author | Ruben Pollan <meskio@sindominio.net> | 2016-04-20 12:44:15 -0300 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2016-04-25 18:55:07 -0300 |
commit | a68bbe5e69a3481ede78f518b1637761e8f8cd01 (patch) | |
tree | a99eb16a378d19f96b72d973f55a776809696076 /src | |
parent | 9a0568c18ed38558a481d5f6e4be12c68f9870a6 (diff) |
[bug] let the failure propagate
The failure was processed in start_incoming_mail_service what will make
it return a None when an IncomingMail object was expected. If we
propagate the failure it can be treated properly by the IMAPController.
- Related: #8051
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/bitmask/services/mail/imap.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/leap/bitmask/services/mail/imap.py b/src/leap/bitmask/services/mail/imap.py index 2f000b2a..7875a4af 100644 --- a/src/leap/bitmask/services/mail/imap.py +++ b/src/leap/bitmask/services/mail/imap.py @@ -94,5 +94,4 @@ def start_incoming_mail_service(keymanager, soledad, userid): acc = Account(soledad, userid) d = acc.callWhenReady(lambda _: acc.get_collection_by_mailbox(INBOX_NAME)) d.addCallback(setUpIncomingMail) - d.addErrback(log.err) return d |