You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2008/08/14 22:23:50 UTC

svn commit: r686021 - /incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster

Author: aconway
Date: Thu Aug 14 13:23:49 2008
New Revision: 686021

URL: http://svn.apache.org/viewvc?rev=686021&view=rev
Log:
echo with_ais_group errors  to stderr.

Modified:
    incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster

Modified: incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster
URL: http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster?rev=686021&r1=686020&r2=686021&view=diff
==============================================================================
--- incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster (original)
+++ incubator/qpid/trunk/qpid/cpp/src/tests/start_cluster Thu Aug 14 13:23:49 2008
@@ -5,7 +5,7 @@
 
 # Execute command with the ais group set.
 with_ais_group() {
-    id -nG | grep '\<ais\>' >/dev/null || { echo "You are not a member of the ais group."; exit 1; }
+    id -nG | grep '\<ais\>' >/dev/null || { echo "You are not a member of the ais group." 1>&2; exit 1; }
     echo $* | newgrp ais
 }