diff options
author | Benoit Foucher <benoit@zeroc.com> | 2002-07-30 19:43:11 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2002-07-30 19:43:11 +0000 |
commit | 76baf7376604b5e288cef34b5262faf6bdfadb38 (patch) | |
tree | 47d1d483f270d7742d3470067fd1c234b9e3d72f /cpp/test/IceStorm/federation2/run.py | |
parent | fixes (diff) | |
download | ice-76baf7376604b5e288cef34b5262faf6bdfadb38.tar.bz2 ice-76baf7376604b5e288cef34b5262faf6bdfadb38.tar.xz ice-76baf7376604b5e288cef34b5262faf6bdfadb38.zip |
Fix to get IceBox shutdown properly again.
Diffstat (limited to 'cpp/test/IceStorm/federation2/run.py')
-rwxr-xr-x | cpp/test/IceStorm/federation2/run.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/test/IceStorm/federation2/run.py b/cpp/test/IceStorm/federation2/run.py index 96aa71dcb24..d4c2bd8d3af 100755 --- a/cpp/test/IceStorm/federation2/run.py +++ b/cpp/test/IceStorm/federation2/run.py @@ -33,7 +33,6 @@ updatedClientOptions = TestUtil.clientOptions.replace("TOPLEVELDIR", toplevel) updatedClientServerOptions = TestUtil.clientServerOptions.replace("TOPLEVELDIR", toplevel) iceBoxEndpoints=' --IceBox.ServiceManager.Endpoints="default -p 12345"' -iceBoxReference=' --IceBox.ServiceManager="ServiceManager: default -p 12345"' iceStormService=" --IceBox.Service.IceStorm=IceStormService:create" + \ ' --IceStorm.TopicManager.Endpoints="default -p 12346"' + \ @@ -163,7 +162,7 @@ print "ok" # Shutdown icestorm. # print "shutting down icestorm service...", -command = iceBoxAdmin + updatedClientOptions + iceBoxReference + r' shutdown' +command = iceBoxAdmin + updatedClientOptions + iceBoxEndpoints + r' shutdown' iceBoxAdminPipe = os.popen(command) iceBoxAdminStatus = iceBoxAdminPipe.close() if iceBoxAdminStatus: |