You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by sn...@apache.org on 2013/01/15 22:22:11 UTC

svn commit: r1433658 - in /nutch/trunk: CHANGES.txt src/bin/crawl

Author: snagel
Date: Tue Jan 15 21:22:11 2013
New Revision: 1433658

URL: http://svn.apache.org/viewvc?rev=1433658&view=rev
Log:
NUTCH-1500 bin/crawl fails on step solrindex with wrong path to segment

Modified:
    nutch/trunk/CHANGES.txt
    nutch/trunk/src/bin/crawl

Modified: nutch/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/nutch/trunk/CHANGES.txt?rev=1433658&r1=1433657&r2=1433658&view=diff
==============================================================================
--- nutch/trunk/CHANGES.txt (original)
+++ nutch/trunk/CHANGES.txt Tue Jan 15 21:22:11 2013
@@ -2,6 +2,8 @@ Nutch Change Log
 
 (trunk): Current Development
 
+* NUTCH-1500 bin/crawl fails on step solrindex with wrong path to segment (Tristan Buckner, snagel)
+
 * NUTCH-1274 Fix [cast] javac warnings (Tejas Patil via lewismc)
 
 * NUTCH-1494 RSS feed plugin seems broken (Sourajit Basak, Tejas Patil and lewismc)

Modified: nutch/trunk/src/bin/crawl
URL: http://svn.apache.org/viewvc/nutch/trunk/src/bin/crawl?rev=1433658&r1=1433657&r2=1433658&view=diff
==============================================================================
--- nutch/trunk/src/bin/crawl (original)
+++ nutch/trunk/src/bin/crawl Tue Jan 15 21:22:11 2013
@@ -166,7 +166,7 @@ do
   fi
 
   echo "Indexing $SEGMENT on SOLR index -> $SOLRURL"
-  $bin/nutch solrindex $SOLRURL $CRAWL_PATH/crawldb -linkdb $CRAWL_PATH/linkdb $SEGMENT
+  $bin/nutch solrindex $SOLRURL $CRAWL_PATH/crawldb -linkdb $CRAWL_PATH/linkdb $CRAWL_PATH/segments/$SEGMENT
   
   if [ $? -ne 0 ] 
    then exit $?