From 54a97a7355e24b965d37317d5050c8a25fdc0053 Mon Sep 17 00:00:00 2001 From: theli Date: Mon, 10 Oct 2005 11:31:46 +0000 Subject: [PATCH] *) 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 --- source/de/anomic/http/httpdProxyHandler.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/de/anomic/http/httpdProxyHandler.java b/source/de/anomic/http/httpdProxyHandler.java index 0528d3df0..e5b753332 100644 --- a/source/de/anomic/http/httpdProxyHandler.java +++ b/source/de/anomic/http/httpdProxyHandler.java @@ -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())) {