You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by jn...@apache.org on 2014/06/27 09:31:03 UTC

svn commit: r1605975 - in /nutch/branches/2.x: CHANGES.txt src/bin/crawl

Author: jnioche
Date: Fri Jun 27 07:31:02 2014
New Revision: 1605975

URL: http://svn.apache.org/r1605975
Log:
NUTCH-1798 Crawl script not calling index command correctly (Aaron Bedward via jnioche)

Modified:
    nutch/branches/2.x/CHANGES.txt
    nutch/branches/2.x/src/bin/crawl

Modified: nutch/branches/2.x/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/CHANGES.txt?rev=1605975&r1=1605974&r2=1605975&view=diff
==============================================================================
--- nutch/branches/2.x/CHANGES.txt (original)
+++ nutch/branches/2.x/CHANGES.txt Fri Jun 27 07:31:02 2014
@@ -2,6 +2,8 @@ Nutch Change Log
 
 Current Development
 
+* NUTCH-1798 Crawl script not calling index command correctly (Aaron Bedward via jnioche)
+
 * NUTCH-1769 REST API refactoring (Fjodor Vershinin via lewismc)
 
 * NUTCH-1633 slf4j is provided by hadoop and should not be included in the job file (kaveh minooie via jnioche)

Modified: nutch/branches/2.x/src/bin/crawl
URL: http://svn.apache.org/viewvc/nutch/branches/2.x/src/bin/crawl?rev=1605975&r1=1605974&r2=1605975&view=diff
==============================================================================
--- nutch/branches/2.x/src/bin/crawl (original)
+++ nutch/branches/2.x/src/bin/crawl Fri Jun 27 07:31:02 2014
@@ -147,7 +147,7 @@ do
   fi
 
   echo "Indexing $CRAWL_ID on SOLR index -> $SOLRURL"
-  $bin/nutch solrindex $commonOptions $SOLRURL -all -crawlId $CRAWL_ID
+  $bin/nutch index $commonOptions -D solr.server.url=$SOLRURL -all -crawlId $CRAWL_ID
   
   if [ $? -ne 0 ] 
    then exit $?