adding an infinite loop to try to restart the server internally.

This commit is contained in:
Danny Yoo 2013-04-05 14:16:36 -06:00
parent 54bc7c45ce
commit 90851d27c6

View File

@ -22,15 +22,19 @@
#t) #t)
(define eval (let loop ()
(parameterize ([sandbox-memory-limit 256] (define eval
[sandbox-output (current-output-port)] (parameterize ([sandbox-memory-limit 256]
[sandbox-network-guard my-network-guard]) [sandbox-output (current-output-port)]
(printf "memory limit: ~s mb\n" (sandbox-memory-limit)) [sandbox-network-guard my-network-guard])
(make-module-evaluator server-path (printf "memory limit: ~s mb\n" (sandbox-memory-limit))
#:allow-read (list (build-path "/"))))) (make-module-evaluator server-path
(printf "starting server thread\n") #:allow-read (list (build-path "/")))))
(define server-thread (eval `(start-server #:port ,(current-port)))) (printf "starting server thread\n")
(printf "thread started\n") (define server-thread (eval `(start-server #:port ,(current-port))))
(printf "thread started\n")
(sync server-thread) (with-handlers ([exn:fail? (lambda (exn)
(printf "server died prematurely? ~s\n" (exn-message exn)))])
(sync server-thread))
(printf "restarting server\n")
(loop))