Update of 
/cvsroot/nutch/nutch/src/plugin/protocol-http/src/java/net/nutch/protocol/http
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11008

Modified Files:
        Http.java 
Log Message:
Changed fetcher.server.delay to be a float, so that sub-second delays
can be specified.


Index: Http.java
===================================================================
RCS file: 
/cvsroot/nutch/nutch/src/plugin/protocol-http/src/java/net/nutch/protocol/http/Http.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Http.java   28 Jun 2004 21:26:39 -0000      1.5
--- Http.java   9 Dec 2004 17:25:01 -0000       1.6
***************
*** 46,50 ****
  
    static long SERVER_DELAY =
!     NutchConf.getInt("fetcher.server.delay", 1) * 1000;
  
    static {
--- 46,50 ----
  
    static long SERVER_DELAY =
!     (long)(NutchConf.getFloat("fetcher.server.delay", 1.0f) * 1000);
  
    static {



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
Nutch-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nutch-cvs

Reply via email to