File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,12 @@ export class Job {
167167 }
168168
169169 setStreaming ( executableNumber : number ) : void {
170+ // If we aren't waiting for the job to finish then we should end it now
171+ if ( ! this . queue . taskOptions . captureConsole ) { // transition to Finishing
172+ this . changeState ( JobState . Streaming ) ;
173+ this . changeState ( JobState . Finishing ) ;
174+ return ;
175+ }
170176 if ( this . state == JobState . New || this . state == JobState . Locating ) {
171177 this . executableNumber = executableNumber ;
172178 this . executableUrl = Util . addUrlSegment ( this . taskUrl , this . executableNumber . toString ( ) ) ;
Original file line number Diff line number Diff line change 1414 "version" : {
1515 "Major" : 1 ,
1616 "Minor" : 117 ,
17- "Patch" : 0
17+ "Patch" : 2
1818 },
1919 "groups" : [
2020 {
Original file line number Diff line number Diff line change 1414 "version" : {
1515 "Major" : 1 ,
1616 "Minor" : 117 ,
17- "Patch" : 0
17+ "Patch" : 2
1818 },
1919 "groups" : [
2020 {
You can’t perform that action at this time.
0 commit comments