chiark / gitweb /
fixes
[hippotat.git] / client
diff --git a/client b/client
index e6ea8edfb1b81442e14a7f1adcf21a3269f7c9cc..a5edd7eef802e37c00dc35e9a7d790bfc63b0b11 100755 (executable)
--- a/client
+++ b/client
@@ -37,8 +37,9 @@ def process_cfg():
   c.routes = cfg.get('virtual','routes')
   c.max_queue_time = cfg.getint(client_cs, 'max_queue_time')
   c.max_batch_up   = cfg.getint(client_cs, 'max_batch_up')
-  c.http_timeout   = cfg.getint(client_cs, 'http_timeout')
   c.http_retry     = cfg.getint(client_cs, 'http_retry')
+  c.http_timeout = (cfg.getint(client_cs, 'http_timeout') +
+                    cfg.getint(client_cs, 'http_timeout_grace'))
 
   process_cfg_ipif(client_cs,
                    (('local', 'client'),
@@ -93,7 +94,7 @@ class ResponseConsumer(GeneralResponseConsumer):
       return
     try:
       self._ssd.flush()
-      req_fin(req)
+      req_fin(self._req)
     except Exception as e:
       self._handleexception()
 
@@ -154,7 +155,7 @@ def req_err(req, err):
       raise RuntimeError('[%#x] previously %s' % (id(req), outstanding[req]))
     outstanding[req] = err
     log_outstanding()
-    reactor.callLater(c.http_retry, (lambda: req_fin(req)))
+    reactor.callLater(c.http_retry, partial(req_fin, req))
   except Exception as e:
     crash(traceback.format_exc() + '\n----- handling -----\n' + err)
 
@@ -163,6 +164,12 @@ def req_fin(req):
   log_debug(DBG.HTTP_CTRL, 'req_fin OS=%d' % len(outstanding), idof=req)
   check_outbound()
 
+class Errb:
+  def __init__(self, req):
+    self._req = req
+  def call(self, err):
+    req_err(self._req, err)
+
 def check_outbound():
   global outstanding
 
@@ -186,6 +193,7 @@ def check_outbound():
             str(c.client)             .encode('ascii')    + crlf +
             password                                      + crlf +
             str(c.target_outstanding) .encode('ascii')    + crlf +
+            str(c.http_timeout)       .encode('ascii')    + crlf +
           ((
             b'--b'                                        + crlf +
             b'Content-Type: application/octet-stream'     + crlf +
@@ -216,8 +224,8 @@ def check_outbound():
     outstanding[req] = len(d)
     log_debug(DBG.HTTP_CTRL, 'request OS=%d' % len(outstanding), idof=req, d=d)
     req.addTimeout(c.http_timeout, reactor)
-    req.addCallback((lambda resp: req_ok(req, resp)))
-    req.addErrback((lambda err: req_err(req, err)))
+    req.addCallback(partial(req_ok, req))
+    req.addErrback(partial(req_err, req))
 
   log_outstanding()