]> matita.cs.unibo.it Git - helm.git/commitdiff
we set the http daemon timeout to 15 minutes, which is the default timeout of wget...
authorFerruccio Guidi <ferruccio.guidi@unibo.it>
Mon, 23 Jun 2008 17:27:35 +0000 (17:27 +0000)
committerFerruccio Guidi <ferruccio.guidi@unibo.it>
Mon, 23 Jun 2008 17:27:35 +0000 (17:27 +0000)
helm/software/daemons/uwobo/uwobo.ml

index fc2d5d02bb2ba486714f73e1616b5c78c2432878..167dc04f89d3978d52045779938f56fce9919e19 100644 (file)
@@ -803,7 +803,10 @@ let main () =
         let d_spec = Http_daemon.daemon_spec
             ~port ~mode:`Fork
             ~callback:(callback ~syslogger ~styles ~cmd_pipe ~res_pipe ())
-            ~auto_close:true ()
+            ~auto_close:true 
+(* FG: we set a timeout of 900 secs, which is the default of wget         *)
+(*   : 300 secs is too short for some proofs like pr0_confluence.con.body *)
+           ~timeout:(Some 900) ()
         in
         Http_daemon.main d_spec
     | _ (* < 0 *) ->  (* fork failed :-((( *)