Author: btami
Date: 2005-09-24 12:28:38 -0500 (Sat, 24 Sep 2005)
New Revision: 7989
Modified:
trunk/gnue-appserver/src/geasRpcServer.py
Log:
back to the safe sleep time on win32
Modified: trunk/gnue-appserver/src/geasRpcServer.py
===================================================================
--- trunk/gnue-appserver/src/geasRpcServer.py 2005-09-24 17:04:40 UTC (rev
7988)
+++ trunk/gnue-appserver/src/geasRpcServer.py 2005-09-24 17:28:38 UTC (rev
7989)
@@ -237,8 +237,9 @@
# wait for the servers shut down
try:
- while 1:
- time.sleep (sys.maxint)
+ while 1:
+ # sys.maxint = Owerflow error on win32
+ time.sleep (1999999)
except KeyboardInterrupt:
adapter.shutdown ()
_______________________________________________
Commit-gnue mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/commit-gnue