summaryrefslogtreecommitdiff
path: root/py/python/Ice.py
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2008-05-09 12:10:01 -0700
committerMark Spruiell <mes@zeroc.com>2008-05-09 12:10:01 -0700
commit15df26a6362d06d97a59cbb4f5aa80f0e6d0c882 (patch)
tree4bb85c69eae8b4aca57fe4d6ae1d8a706070a262 /py/python/Ice.py
parentFixes for allDemos.py to work with Python demos on Windows (diff)
downloadice-15df26a6362d06d97a59cbb4f5aa80f0e6d0c882.tar.bz2
ice-15df26a6362d06d97a59cbb4f5aa80f0e6d0c882.tar.xz
ice-15df26a6362d06d97a59cbb4f5aa80f0e6d0c882.zip
bug 2762 - ctrl-c ignored in python
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r--py/python/Ice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py
index 9feb0d2a8df..a8156dc39eb 100644
--- a/py/python/Ice.py
+++ b/py/python/Ice.py
@@ -281,7 +281,7 @@ class CommunicatorI(Communicator):
# the specified timeout in order to give us a chance to handle
# signals.
#
- while not self._impl.waitForShutdown(1000):
+ while not self._impl.waitForShutdown(500):
pass
def isShutdown(self):