From: Ferruccio Guidi Date: Mon, 23 Jun 2008 17:27:35 +0000 (+0000) Subject: we set the http daemon timeout to 15 minutes, which is the default timeout of wget... X-Git-Tag: make_still_working~4997 X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=commitdiff_plain;h=2ff607128f5574b85c86f1b20109ea1386f2607e;p=helm.git we set the http daemon timeout to 15 minutes, which is the default timeout of wget, because some proof terms are processed in more than 5 minutes. --- diff --git a/helm/software/daemons/uwobo/uwobo.ml b/helm/software/daemons/uwobo/uwobo.ml index fc2d5d02b..167dc04f8 100644 --- a/helm/software/daemons/uwobo/uwobo.ml +++ b/helm/software/daemons/uwobo/uwobo.ml @@ -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 :-((( *)