You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on #276 the underlying error was difficult to debug since it was hidden. Improve the capture of errors from the worker processes that get killed.
The text was updated successfully, but these errors were encountered:
this is made more difficult since the likely place where code that would cause the process to get killed (via segfaulting perhaps) would be inside user code written in a cell. When that code is evaluated we have set stderr to a redirected pipe in IOCapture which captures that error (perhaps?) and thus it isn't forwarded to the stderr set in the server's pipeline in point one. Would likely need to also feed it through via passthrough keyword, but that sends it all to stdout (which is what Malt uses to communicate with the server..., uses a Socket, not stdout, that just gets used for the initial port number setting.
Based on #276 the underlying error was difficult to debug since it was hidden. Improve the capture of errors from the worker processes that get killed.
The text was updated successfully, but these errors were encountered: