From 20e455922f3139013e09e6d02777d4d750e7ab65 Mon Sep 17 00:00:00 2001 From: vfilippov Date: Mon, 8 Jul 2013 11:19:35 +0000 Subject: [PATCH] Bug 124910 - Add another Software caused connection abort error message git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1712 6955db30-a419-402b-8a0d-67ecbb4d7f56 --- Bugzilla.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla.pm b/Bugzilla.pm index 651b4f4c5..82dad12b4 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -79,7 +79,7 @@ sub _die_error $msg =~ s/\s*$//so; # We are not interested in getting "Software caused connection abort" errors # on each "Stop" click in the browser. - if ($msg !~ /(^|Apache2::RequestIO::print: \(103\) )(Программа вызвала сброс соединения|Software caused connection abort) at /iso) + if ($msg !~ /(^|(Apache2::RequestIO::print|:Apache2 IO write): \(103\) )(Программа вызвала сброс соединения|Software caused connection abort) at /iso) { $msg = { eval_error => $msg }; Bugzilla::Error::ThrowCodeError('eval_error', $msg);