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 | 708790b9914b97404974860f0b801b720dd7a0ec (patch) | |
| tree | 7f192e792e4c27d7930a64b2387203b2349dff30 /cpp/src/tests/start_cluster | |
| parent | 8cdf7df6f7690b0fc789ad2a9735299953384daf (diff) | |
| download | qpid-python-708790b9914b97404974860f0b801b720dd7a0ec.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/qpid@705083 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/start_cluster')
| -rwxr-xr-x | cpp/src/tests/start_cluster | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/start_cluster b/cpp/src/tests/start_cluster index 0c1722e566..1dc3773500 100755 --- a/cpp/src/tests/start_cluster +++ b/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 |
