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
When running js_container from shell script I'd like to be able to intercept return code.
This is however not working correctly today because the sys.exit(1) used in thread is not propagated to parent (main process).
As a result, if any of actions taken on any of containers fails, the script outputs Error ... but the return code is 0.
So when scripting with examples - we can't handle exceptions.
The text was updated successfully, but these errors were encountered:
When running
js_container
from shell script I'd like to be able to intercept return code.This is however not working correctly today because the
sys.exit(1)
used in thread is not propagated to parent (main process).As a result, if any of actions taken on any of containers fails, the script outputs
Error ...
but the return code is 0.So when scripting with examples - we can't handle exceptions.
The text was updated successfully, but these errors were encountered: