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