-
Notifications
You must be signed in to change notification settings - Fork 362
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
feat: Flat Run Actions #9368
feat: Flat Run Actions #9368
Conversation
✅ Deploy Preview for determined-ui canceled.
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9368 +/- ##
==========================================
- Coverage 48.57% 43.29% -5.28%
==========================================
Files 1234 911 -323
Lines 158841 119262 -39579
Branches 2778 2779 +1
==========================================
- Hits 77155 51634 -25521
+ Misses 81511 67452 -14059
- Partials 175 176 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
faa104d
to
7eee64d
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9368 +/- ##
==========================================
+ Coverage 49.79% 51.27% +1.47%
==========================================
Files 1247 1252 +5
Lines 162235 151993 -10242
Branches 2888 3018 +130
==========================================
- Hits 80793 77929 -2864
+ Misses 81270 73905 -7365
+ Partials 172 159 -13
Flags with carried forward coverage won't be shown. Click here to find out more.
|
API doesnt not include |
20a458a
to
f624a38
Compare
f624a38
to
763becb
Compare
763becb
to
6919563
Compare
e87ef44
to
db64742
Compare
0fe119f
to
f61cde3
Compare
fixed |
Some runs you are trying to move belong to a Hyperparameter Search and cannot be moved | ||
independently without breaking their contextual relationships. These runs will be moved with | ||
their parent search. | ||
{`Some of the runs you're trying to move are part of a hyperparameter search. To preserve their |
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.
to avoid "'
can be escaped with '
, ‘
, '
, ’
." error, used string here
master/internal/api_runs.go
Outdated
@@ -729,6 +732,11 @@ func archiveUnarchiveAction(ctx context.Context, archive bool, runIDs []int32, | |||
for _, cand := range runCandidates { | |||
visibleIDs.Insert(cand.ID) | |||
switch { | |||
case cand.ExpArchived: | |||
results = append(results, &apiv1.RunActionResult{ | |||
Error: "Run is part of archived Search.", |
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.
Would we be able to include what search it's part of?
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.
fixed it
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.
BE side of things looks good, I had one nit about an error message
Ticket
ET-110
Description
Flat Run Actions
Tensorboard
andPause/Unpause
actions are out of this PR, so not includedMove
action will be implemented after #9390 is merged into thisTest Plan
archive
,unarchive
,delete
,kill
actions are working with/without RBACChecklist
docs/release-notes/
.See Release Note for details.