summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-08-14 20:23:49 +0000
committerAlan Conway <aconway@apache.org>2008-08-14 20:23:49 +0000
commit4c975be252e229a8de51eca68a60eec28c1c3447 (patch)
tree837bc6ad63b7aef5402ac89723b34b2a44b15f15
parent888323011da685ccced71affa2de26b96e850706 (diff)
downloadqpid-python-4c975be252e229a8de51eca68a60eec28c1c3447.tar.gz
echo with_ais_group errors to stderr.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@686021 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xcpp/src/tests/start_cluster2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/start_cluster b/cpp/src/tests/start_cluster
index e399d213dc..524490f057 100755
--- a/cpp/src/tests/start_cluster
+++ b/cpp/src/tests/start_cluster
@@ -5,7 +5,7 @@ echo $1 | grep '^[0-9][0-9]*$' > /dev/null || { echo "Usage: $0 cluster-size [op
# 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
}