*) IfesL: Suppressing "Broken pipe" stacktrace in log file

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@903 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 20 years ago
parent a9e25c26e1
commit 54a97a7355

@ -1243,7 +1243,8 @@ public final class httpdProxyHandler extends httpdAbstractHandler implements htt
(
(exceptionMsg.indexOf("unknown host")>=0) ||
(exceptionMsg.indexOf("socket write error")>=0) ||
(exceptionMsg.indexOf("Read timed out") >= 0)
(exceptionMsg.indexOf("Read timed out") >= 0) ||
(exceptionMsg.indexOf("Broken pipe") >= 0)
)) {
errorMessage = exceptionMsg;
} else if ((remote != null)&&(remote.isClosed())) {

Loading…
Cancel
Save