From b2e6062f6c67b64309a305215ee3121dad0cf1c5 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Sat, 27 Jul 2013 08:54:34 -0400 Subject: [PATCH] temporarily work around problem with rethrow (from #20) --- jlkernel/ipython.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jlkernel/ipython.jl b/jlkernel/ipython.jl index b502c705..f028e993 100644 --- a/jlkernel/ipython.jl +++ b/jlkernel/ipython.jl @@ -77,7 +77,9 @@ function eventloop(socket) "msg_type" => "crash" ], [ "info" => sprint(Base.error_show, e, catch_backtrace())])) - rethrow(e) + # rethrow(e) # FIXME: seems to hang? + Base.error_show(STDERR, e, catch_backtrace()) + exit(1) end end end