You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by gs...@apache.org on 2007/01/24 11:54:44 UTC

svn commit: r499353 - /incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker

Author: gsim
Date: Wed Jan 24 02:54:43 2007
New Revision: 499353

URL: http://svn.apache.org/viewvc?view=rev&rev=499353
Log:
use same name for pid file as start_broker


Modified:
    incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker

Modified: incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker?view=diff&rev=499353&r1=499352&r2=499353
==============================================================================
--- incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker (original)
+++ incubator/qpid/branches/qpid.0-9/cpp/tests/kill_broker Wed Jan 24 02:54:43 2007
@@ -1,3 +1,3 @@
 #!/bin/sh
-PID=qpid.pid
+PID=qpidd.pid
 if [ -f $PID ] ; then kill -9 `cat $PID` ; rm -f $PID ; fi