We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a82c87 commit 8f53b2bCopy full SHA for 8f53b2b
simvue/run.py
@@ -248,19 +248,12 @@ def _handle_exception_throw(
248
else f"An exception was thrown: {_exception_thrown}"
249
)
250
251
- self.log_event(_event_msg)
252
- self.set_status("terminated" if _is_terminated else "failed")
253
-
254
# If the dispatcher has already been aborted then this will
255
# fail so just continue without the event
256
with contextlib.suppress(RuntimeError):
257
- self.log_event(f"{_exception_thrown}: {value}")
258
259
- if not traceback:
260
- return
+ self.log_event(_event_msg)
261
262
- with contextlib.suppress(RuntimeError):
263
- self.log_event(f"Traceback: {traceback}")
+ self.set_status("terminated" if _is_terminated else "failed")
264
265
def __exit__(
266
self,
0 commit comments