From fafda068f967e9bc8500ca539eb8749ad2669237 Mon Sep 17 00:00:00 2001 From: theli Date: Thu, 23 Jun 2005 10:00:31 +0000 Subject: [PATCH] *) allowing crawler to process resources with statuscode 203 - this is needed if yacy is behind a second proxy git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@316 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- source/de/anomic/plasma/plasmaCrawlWorker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/de/anomic/plasma/plasmaCrawlWorker.java b/source/de/anomic/plasma/plasmaCrawlWorker.java index 14e5c1a44..5b8f46d93 100644 --- a/source/de/anomic/plasma/plasmaCrawlWorker.java +++ b/source/de/anomic/plasma/plasmaCrawlWorker.java @@ -264,7 +264,7 @@ public final class plasmaCrawlWorker extends Thread { // send request httpc.response res = remote.GET(path, requestHeader); - if (res.status.startsWith("200")) { + if (res.status.startsWith("200") || res.status.startsWith("203")) { // the transfer is ok long contentLength = res.responseHeader.contentLength();