You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by cu...@apache.org on 2005/10/21 22:45:33 UTC

svn commit: r327572 - /lucene/nutch/branches/mapred/bin/slaves.sh

Author: cutting
Date: Fri Oct 21 13:45:32 2005
New Revision: 327572

URL: http://svn.apache.org/viewcvs?rev=327572&view=rev
Log:
Tag standard error with hostname too.

Modified:
    lucene/nutch/branches/mapred/bin/slaves.sh

Modified: lucene/nutch/branches/mapred/bin/slaves.sh
URL: http://svn.apache.org/viewcvs/lucene/nutch/branches/mapred/bin/slaves.sh?rev=327572&r1=327571&r2=327572&view=diff
==============================================================================
--- lucene/nutch/branches/mapred/bin/slaves.sh (original)
+++ lucene/nutch/branches/mapred/bin/slaves.sh Fri Oct 21 13:45:32 2005
@@ -21,7 +21,7 @@
 
 for slave in `cat $NUTCH_SLAVES`; do
  ssh -o ConnectTimeout=1 -o SendEnv='NUTCH* JAVA*' $slave "$@" \
-   | sed "s/^/$slave: /" &
+   2>&1 | sed "s/^/$slave: /" &
 done
 
 wait