Commit c615fce 1 parent 24d4830 commit c615fce Copy full SHA for c615fce
File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -904,6 +904,8 @@ message GetJobStatusParams {
904
904
905
905
message SuccessfulJob {
906
906
repeated PartitionLocation partition_location = 1 ;
907
+ uint64 queued_at = 2 ;
908
+ uint64 completed_at = 3 ;
907
909
}
908
910
909
911
message QueuedJob {}
Original file line number Diff line number Diff line change @@ -498,6 +498,7 @@ mod test {
498
498
match status. status {
499
499
Some ( job_status:: Status :: Successful ( SuccessfulJob {
500
500
partition_location,
501
+ ..
501
502
} ) ) => {
502
503
assert_eq ! ( partition_location. len( ) , 4 ) ;
503
504
}
Original file line number Diff line number Diff line change @@ -1235,6 +1235,8 @@ impl ExecutionGraph {
1235
1235
self . status = JobStatus {
1236
1236
status : Some ( job_status:: Status :: Successful ( SuccessfulJob {
1237
1237
partition_location,
1238
+ queued_at : self . queued_at ,
1239
+ completed_at : timestamp_millis ( ) ,
1238
1240
} ) ) ,
1239
1241
} ;
1240
1242
self . end_time = SystemTime :: now ( )
You can’t perform that action at this time.
0 commit comments