You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@nutch.apache.org by Stefan Groschupf <sg...@media-style.com> on 2005/10/08 12:32:00 UTC

bug: fetch threads are ignored

Hi,

I had started my fetch with:
bin/nutch fetch $s -threads 400
But in my log file I can see:
051008 061545 Fetcher: threads: 200

The problem is that the command line args aren't correct readed
org.apache.nutch.crawl.Fetcher.java
line:354
change from:
  for (int i = 2; i < args.length; i++) {       // parse command line
to
for (int i = 1; i < args.length; i++) {       // parse command line

...than it will work.

Will someone of the committers may just change the value 2 to 1 or  
should I open bug?

Stefan

P.S. I hope I can improve my port patch as discussed this weekend.