r27209 - trunk/freenet/src/freenet/clients/http

[email protected] Wed, 22 Apr 2009 12:10:40 +0000
Newsgroups gmane.network.freenet.cvs
Message-ID <[email protected]>
Author: toad
Date: 2009-04-22 12:10:40 +0000 (Wed, 22 Apr 2009)
New Revision: 27209

Modified:
   trunk/freenet/src/freenet/clients/http/FProxyFetchWaiter.java
Log:
Don't wait 2 seconds on coalescing with fproxy requests that have finished recently


Modified: trunk/freenet/src/freenet/clients/http/FProxyFetchWaiter.java
===================================================================
--- trunk/freenet/src/freenet/clients/http/FProxyFetchWaiter.java	2009-04-22 11:44:17 UTC (rev 27208)
+++ trunk/freenet/src/freenet/clients/http/FProxyFetchWaiter.java	2009-04-22 12:10:40 UTC (rev 27209)
@@ -5,6 +5,7 @@
 	
 	public FProxyFetchWaiter(FProxyFetchInProgress progress2) {
 		this.progress = progress2;
+		if(progress.finished()) finished = true;
 	}
 
 	private final FProxyFetchInProgress progress;