File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
internal-packages/run-engine/src/engine Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1682,7 +1682,6 @@ export class RunEngine {
16821682 switch ( latestSnapshot . executionStatus ) {
16831683 case "EXECUTING" :
16841684 case "EXECUTING_WITH_WAITPOINTS" :
1685- case "FINISHED" :
16861685 case "PENDING_CANCEL" :
16871686 case "PENDING_EXECUTING" :
16881687 case "QUEUED_EXECUTING" :
@@ -1716,8 +1715,9 @@ export class RunEngine {
17161715
17171716 break ;
17181717 }
1718+ case "FINISHED" :
17191719 case "SUSPENDED" : {
1720- this . logger . log ( "RunEngine.handleRepairSnapshot SUSPENDED" , {
1720+ this . logger . log ( "RunEngine.handleRepairSnapshot SUSPENDED/FINISHED " , {
17211721 runId,
17221722 snapshotId,
17231723 } ) ;
@@ -1730,7 +1730,7 @@ export class RunEngine {
17301730 } ) ;
17311731
17321732 if ( ! taskRun ) {
1733- this . logger . error ( "RunEngine.handleRepairSnapshot SUSPENDED task run not found" , {
1733+ this . logger . error ( "RunEngine.handleRepairSnapshot SUSPENDED/FINISHED task run not found" , {
17341734 runId,
17351735 snapshotId,
17361736 } ) ;
You can’t perform that action at this time.
0 commit comments