diff options
| author | Stephen D. Huston <shuston@apache.org> | 2008-10-15 22:33:34 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2008-10-15 22:33:34 +0000 |
| commit | f4c99f683a3ace8acd508af5147a03b123b857f4 (patch) | |
| tree | af3fac47a65dac63668fc75d24b36347247bcd3a /qpid/cpp/src/tests/start_cluster | |
| parent | 8a3396931392fba06057d0b12561dbc2365b83e8 (diff) | |
| download | qpid-python-f4c99f683a3ace8acd508af5147a03b123b857f4.tar.gz | |
Split logging options into portable options and sink-related options that are platform-specific. Re-did sink options for Posix as discussed on qpid-dev (no more --log-output, but more specific --log-to-<target> options. Allows addition of Windows options without further reorg of Posix code.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@705083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/start_cluster')
| -rwxr-xr-x | qpid/cpp/src/tests/start_cluster | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/start_cluster b/qpid/cpp/src/tests/start_cluster index 0c1722e566..1dc3773500 100755 --- a/qpid/cpp/src/tests/start_cluster +++ b/qpid/cpp/src/tests/start_cluster @@ -16,10 +16,10 @@ OPTS="-d --load-module ../.libs/cluster.so --cluster-name=$CLUSTER --no-data-di if test "$SIZE" = "one"; then # Special case of singleton cluster, use default port. ../qpidd -q - with_ais_group ../qpidd $OPTS --log-output=cluster.log || exit 1 + with_ais_group ../qpidd $OPTS --log-to-file=cluster.log || exit 1 else for (( i=0; i<SIZE; ++i )); do - PORT=`with_ais_group ../qpidd -p0 --log-output=cluster$i.log $OPTS` || exit 1 + PORT=`with_ais_group ../qpidd -p0 --log-to-file=cluster$i.log $OPTS` || exit 1 echo $PORT >> cluster.ports done fi |
