Author: toad
Date: 2008-10-23 17:42:23 +0000 (Thu, 23 Oct 2008)
New Revision: 23051
Modified:
branches/db4o/freenet/src/freenet/client/async/PersistentChosenRequest.java
Log:
Increase the timeout for PCRs to complain to 4 hours. This should be fine even
for inserts, where we have one insert per PCR.
Modified:
branches/db4o/freenet/src/freenet/client/async/PersistentChosenRequest.java
===================================================================
--- branches/db4o/freenet/src/freenet/client/async/PersistentChosenRequest.java
2008-10-23 17:41:39 UTC (rev 23050)
+++ branches/db4o/freenet/src/freenet/client/async/PersistentChosenRequest.java
2008-10-23 17:42:23 UTC (rev 23051)
@@ -96,7 +96,7 @@
}
}
- }, 20*60*1000);
+ }, 4*60*60*1000); // should be plenty of time even with 1000
single-insert PCRs each taking 10 seconds ...
}
void onFinished(PersistentChosenBlock block, ClientContext context) {