Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
e0b12946
Commit
e0b12946
authored
Sep 12, 2018
by
Chengmin Chi
Committed by
QuanluZhang
Sep 13, 2018
Browse files
Add start time for failed trial jobs
parent
fd5fd546
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/nni_manager/core/nniDataStore.ts
src/nni_manager/core/nniDataStore.ts
+3
-0
No files found.
src/nni_manager/core/nniDataStore.ts
View file @
e0b12946
...
...
@@ -217,6 +217,9 @@ class NNIDataStore implements DataStore {
jobInfo
.
logPath
=
record
.
logPath
;
}
jobInfo
.
endTime
=
record
.
timestamp
;
if
(
jobInfo
.
startTime
===
undefined
&&
record
.
timestamp
!==
undefined
)
{
jobInfo
.
startTime
=
record
.
timestamp
;
}
default
:
}
jobInfo
.
status
=
this
.
getJobStatusByLatestEvent
(
record
.
event
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment