changeset 354:00d8ea736197

merge
author Matt Johnston <matt@ucc.asn.au>
date Sun, 24 Jun 2012 10:36:28 +0800
parents 99f8b97a9449 (current diff) 20f7161399a8 (diff)
children 00e213d1f067
files
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/server/ts.py	Sun Jun 24 00:44:28 2012 +0800
+++ b/server/ts.py	Sun Jun 24 10:36:28 2012 +0800
@@ -98,6 +98,7 @@
 def turn_off(sock):
     if TESTING:
         return 99
+    print>>sys.stderr, "sending btoff"
     sock.send("btoff\n");
     # read newline
     l = readline(sock)
--- a/server/utils.py	Sun Jun 24 00:44:28 2012 +0800
+++ b/server/utils.py	Sun Jun 24 10:36:28 2012 +0800
@@ -11,7 +11,7 @@
     pass
 
 DEFAULT_TRIES = 3
-READLINE_SELECT_TIMEOUT = 20
+READLINE_SELECT_TIMEOUT = 4
 
 __all__ = ('monotonic_time', 'retry')