-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabled outputs for failed jobs #270
Conversation
Can we avoid adding an extra status value by just allowing output files in the existing failure state? |
@ellisonbg and I discussed the current approach at length, and came to a conclusion that the backend doesn't have a way to know which files are actually written after a job execution (especially on failure). The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jason already commented on frontend. The backend logic looks good.
d64e436
to
e63eeab
Compare
Summary
Failures for jobs can be of 2 types:
Current implementation doesn't allow for distinguishing between 1 and 2, so downloads for failed jobs that might have outputs are not enabled. This can lead to confusion by users, who don't have access to the failed notebook output or logs to understand where the problem existed.
Solution