-
Notifications
You must be signed in to change notification settings - Fork 40
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
[RFR] Task manager enable premeption #1220
Conversation
sshveta
commented
Sep 11, 2024
•
edited
Loading
edited
Signed-off-by: Shveta Sachdeva <[email protected]>
Signed-off-by: Shveta Sachdeva <[email protected]>
Signed-off-by: Shveta Sachdeva <[email protected]>
Signed-off-by: Shveta Sachdeva <[email protected]>
Signed-off-by: Shveta Sachdeva <[email protected]>
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.
Left a minor comment. LGTM
if ( | ||
status == TaskStatus.pending || | ||
status == TaskStatus.running || | ||
status == TaskStatus.ready || | ||
status == TaskStatus.postponed | ||
) { |
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.
I suggest to check if not succeeded or failed
cy.get(actionMenuItem).contains(setPreemption).click(); | ||
} | ||
|
||
public static cancelTask(status: string): void { |
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.
Nice solution
Hi @sshveta |