File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/vs/workbench/contrib/tasks/browser Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -370,6 +370,9 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
370
370
// update tasks so an incomplete list isn't returned when getWorkspaceTasks is called
371
371
this . _workspaceTasksPromise = undefined ;
372
372
this . _onDidRegisterSupportedExecutions . fire ( ) ;
373
+ if ( custom && shell && process ) {
374
+ this . _onDidRegisterAllSupportedExecutions . fire ( ) ;
375
+ }
373
376
}
374
377
375
378
private _attemptTaskReconnection ( ) : void {
@@ -2208,7 +2211,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
2208
2211
}
2209
2212
await this . _waitForSupportedExecutions ;
2210
2213
if ( runSource === TaskRunSource . Reconnect ) {
2211
- await raceTimeout ( this . _waitForAllSupportedExecutions , 3000 , ( ) => {
2214
+ await raceTimeout ( this . _waitForAllSupportedExecutions , 500 , ( ) => {
2212
2215
console . warn ( 'Timed out waiting for all supported executions for task reconnection' ) ;
2213
2216
} ) ;
2214
2217
}
You can’t perform that action at this time.
0 commit comments