branch develop updated (28cfd32c -> 43baa50c)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from 28cfd32c Fix NPE new 43baa50c - fixes #10094 : Ne pas bloquer la réception des mails sur une OutOfMEmoryError The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 43baa50c328572e6bca7ed6bb55e497087cc6548 Author: jcouteau <couteau@codelutin.com> Date: Wed Sep 19 11:19:02 2018 +0200 - fixes #10094 : Ne pas bloquer la réception des mails sur une OutOfMEmoryError Summary of changes: .../src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 43baa50c328572e6bca7ed6bb55e497087cc6548 Author: jcouteau <couteau@codelutin.com> Date: Wed Sep 19 11:19:02 2018 +0200 - fixes #10094 : Ne pas bloquer la réception des mails sur une OutOfMEmoryError --- .../src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java b/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java index bd56cd69..13b14974 100644 --- a/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java +++ b/faxtomail-ui-web/src/main/java/com/franciaflex/faxtomail/web/job/MailFilterJob.java @@ -528,7 +528,7 @@ public class MailFilterJob extends AbstractFaxToMailJob { // important, delete mail deleteMail(message); - } catch (Exception | StackOverflowError e) { + } catch (Exception | StackOverflowError | OutOfMemoryError e) { log.error("Error while reading the email from " + emailAccount.getLogin() + "@" + emailAccount.getHost(), e); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm