Skip to content

Commit 1e24ba0

Browse files
committed
Use default execution options for GetVariables
1 parent 98ab62a commit 1e24ba0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PowerShellEditorServices/Services/DebugAdapter/DebugService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ public async Task<VariableDetailsBase[]> GetVariables(int variableReferenceId, C
261261
// We execute this on the pipeline thread so the expansion of child variables works.
262262
childVariables = await _executionService.ExecuteDelegateAsync(
263263
$"Getting children of variable ${parentVariable.Name}",
264-
new ExecutionOptions { Priority = ExecutionPriority.Next },
264+
executionOptions: null,
265265
(_, _) => parentVariable.GetChildren(_logger), cancellationToken).ConfigureAwait(false);
266266

267267
foreach (VariableDetailsBase child in childVariables)

0 commit comments

Comments
 (0)