Skip to content

Commit

Permalink
disabled more sleep(200)
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3889 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
orbiter committed Jun 14, 2007
1 parent cb38e57 commit e4aa8f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/de/anomic/http/httpdFileHandler.java
Expand Up @@ -533,7 +533,7 @@ public void doResponse(Properties conProp, httpHeader requestHeader, OutputStrea
result.length, targetDate, null, null, null,
null, nocache);
if (!method.equals(httpHeader.METHOD_HEAD)) {
Thread.sleep(200); // see below
//Thread.sleep(200); // see below
serverFileUtils.write(result, out);
}
}
Expand Down Expand Up @@ -562,7 +562,7 @@ public void doResponse(Properties conProp, httpHeader requestHeader, OutputStrea
result.length, targetDate, null, null, null,
null, nocache);
if (!method.equals(httpHeader.METHOD_HEAD)) {
Thread.sleep(200); // see below
//Thread.sleep(200); // see below
serverFileUtils.write(result, out);
}
}
Expand Down

0 comments on commit e4aa8f2

Please sign in to comment.