Trap browser errors

original commit: 142c06bf4a09ac8e9a7b4a65095e77ddf7d16059
This commit is contained in:
Paul Steckler 2002-07-16 21:04:15 +00:00
parent bb3454e20e
commit 3530b2101e

View File

@ -39,9 +39,20 @@
(wait-for-connection help-desk-port)
(when launch-browser?
(help-desk-browser hd-cookie)
; allow browser startup time
(sleep 2))
(with-handlers
([void
(lambda _
(message-box
"Help Desk"
(format
(string-append
"Unable to start a browser. "
"Manually start a browser and use the URL "
"http://127.0.0.1:~a/servlets/home.ss.")
(hd-cookie->port hd-cookie))))])
(help-desk-browser hd-cookie)
; allow browser startup time
(sleep 2)))
(if quiet?
(semaphore-wait (make-semaphore 0))