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.
probe_executor()
1 parent c1828fe commit 6390cdbCopy full SHA for 6390cdb
src/Sandbox.jl
@@ -183,8 +183,10 @@ function probe_executor(executor::SandboxExecutor; verbose::Bool = false)
183
cmd_stdout = String(take!(cmd_stdout))
184
stdout_lines = split(cmd_stdout, "\n")
185
if !("hello julia" in stdout_lines)
186
+ cmd_stderr = String(take!(cmd_stderr))
187
+ stderr_lines = split(cmd_stderr, "\n")
188
if verbose
- @warn(" -> Basic stdout sentinel missing!", stdout_lines)
189
+ @warn(" -> Basic stdout sentinel missing!", stdout_lines, stderr_lines)
190
end
191
return false
192
0 commit comments