summaryrefslogtreecommitdiff
path: root/py/demo/Ice/throughput/Server.py
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2007-03-01 13:12:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2007-03-01 13:12:23 +0000
commit6799cc28d8c40559cfe84476ea7a89b25baaae39 (patch)
tree695b40a884ca8af0bb0b076e42d174574a89b1fa /py/demo/Ice/throughput/Server.py
parentFixed warning/error messages to be on a single line (diff)
downloadice-6799cc28d8c40559cfe84476ea7a89b25baaae39.tar.bz2
ice-6799cc28d8c40559cfe84476ea7a89b25baaae39.tar.xz
ice-6799cc28d8c40559cfe84476ea7a89b25baaae39.zip
Bug 1894 - fix return code
Diffstat (limited to 'py/demo/Ice/throughput/Server.py')
-rw-r--r--py/demo/Ice/throughput/Server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/demo/Ice/throughput/Server.py b/py/demo/Ice/throughput/Server.py
index 9f03be11d3b..cfedb74b425 100644
--- a/py/demo/Ice/throughput/Server.py
+++ b/py/demo/Ice/throughput/Server.py
@@ -101,7 +101,7 @@ class Server(Ice.Application):
adapter.add(ThroughputI(), self.communicator().stringToIdentity("throughput"))
adapter.activate()
self.communicator().waitForShutdown()
- return True
+ return 0
app = Server()
sys.exit(app.main(sys.argv, "config.server"))