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
As a relative newcomer to Julia and this package, I thought I'd try out an example script. audiometer.jl works fine. measure_latency.jl does not.
I've narrowed the issue down to the write call on line 37. It seems that an exception is thrown here, but some combination of this package's problems with multi-threading (#81) and/or error suppression (#89) makes it error out silently at this spot (meaning, the script just exits, showing no output, but with an exit code of 1).
If I wrap the call like so:
try
write(out_stream, signal)
catch e
showerror(stdout, e, catch_backtrace())
end
As a relative newcomer to Julia and this package, I thought I'd try out an example script.
audiometer.jl
works fine.measure_latency.jl
does not.I've narrowed the issue down to the
write
call on line 37. It seems that an exception is thrown here, but some combination of this package's problems with multi-threading (#81) and/or error suppression (#89) makes it error out silently at this spot (meaning, the script just exits, showing no output, but with an exit code of 1).If I wrap the call like so:
I get this output:
The fact that it fails silently seems to me to be the more serious issue here, though I'm also curious why this apparent type mismatch occurs.
Version info:
The text was updated successfully, but these errors were encountered: