Skip to content

Commit

Permalink
resubmitting Allos patch after accidentally removing it
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@1137 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
low012 committed Nov 28, 2005
1 parent c45e47b commit edaa820
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion htroot/IndexCreateIndexingQueue_p.java
Expand Up @@ -140,7 +140,10 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
entryList.addAll(switchboard.sbQueue.list(0));
}

for (int i = 0; i < entryList.size(); i++) {
int count=entryList.size();
if(count>100)count=100;
for (int i = 0; i < count; i++) {

boolean inProcess = i < inProcessCount;
pcentry = (plasmaSwitchboardQueue.Entry) entryList.get(i);
long entrySize = pcentry.size();
Expand Down

0 comments on commit edaa820

Please sign in to comment.