File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/vs/workbench/contrib/tasks/browser Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -1957,6 +1957,7 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
1957
1957
}
1958
1958
1959
1959
private async _getGroupedTasks ( filter ?: ITaskFilter ) : Promise < TaskMap > {
1960
+ await this . _waitForAllSupportedExecutions ;
1960
1961
const type = filter ?. type ;
1961
1962
const needsRecentTasksMigration = this . _needsRecentTasksMigration ( ) ;
1962
1963
await this . _activateTaskProviders ( filter ?. type ) ;
@@ -2210,11 +2211,9 @@ export abstract class AbstractTaskService extends Disposable implements ITaskSer
2210
2211
return new Map ( ) ;
2211
2212
}
2212
2213
await this . _waitForOneSupportedExecution ;
2213
- if ( runSource === TaskRunSource . Reconnect ) {
2214
- await raceTimeout ( this . _waitForAllSupportedExecutions , 2000 , ( ) => {
2215
- this . _logService . warn ( 'Timed out waiting for all supported executions for task reconnection' ) ;
2216
- } ) ;
2217
- }
2214
+ await raceTimeout ( this . _waitForAllSupportedExecutions , 2000 , ( ) => {
2215
+ this . _logService . warn ( 'Timed out waiting for all supported executions' ) ;
2216
+ } ) ;
2218
2217
await this . _whenTaskSystemReady ;
2219
2218
if ( this . _workspaceTasksPromise ) {
2220
2219
return this . _workspaceTasksPromise ;
You can’t perform that action at this time.
0 commit comments