-
Notifications
You must be signed in to change notification settings - Fork 2k
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
[ui] Add "stopped" as a valid status on jobs index/job detail #23328
Conversation
…n job model and steady-state panel
Ember Test Audit comparison
|
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.
LGTM! This is a nice improvement!
ccb7dd5
to
a9d61f6
Compare
* Stopped status passed through to the statuses endpoint and observed on job model and steady-state panel * Status passed to statuses endpoint and test for FE model statuses
…tail into release/1.8.x (#23338) * no-op commit due to failed cherry-picking * [ui] Add "stopped" as a valid status on jobs index/job detail (#23328) * Stopped status passed through to the statuses endpoint and observed on job model and steady-state panel * Status passed to statuses endpoint and test for FE model statuses --------- Co-authored-by: temp <[email protected]> Co-authored-by: Phil Renaud <[email protected]>
I'm going to lock this pull request because it has been closed for 120 days ⏳. This helps our maintainers find and focus on the active contributions. |
Our recent changes to how we label jobs in the UI considers any job "failed" if none of its expected allocations are running or pending, and it's not in active deployment.
This is coincidentally both true for jobs that failed because a user clicked the "stop" button, and also for jobs that failed because of the universe conspiring against us generally.
Luckily, jobs already had a nice
Stop
boolean to indicate the manual, deliberate stopping of a job (until it gets garbage collected, and provided it didn't have a "purge" flag passed in).This PR observes that boolean and displays a new "Stopped" status in the UI in two places:
resolves #22101