We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd52c3a commit c1906ceCopy full SHA for c1906ce
src/PowerShellEditorServices/Services/PowerShell/Host/PsesInternalHost.cs
@@ -683,6 +683,9 @@ private void RunExecutionLoop(bool isForDebug = false)
683
684
try
685
{
686
+ // TODO: This works around a race condition around executing our interactive
687
+ // tasks, and is a HIGH PRIORITY to fix.
688
+ Thread.Sleep(200);
689
DoOneRepl(cancellationScope.CancellationToken);
690
}
691
catch (OperationCanceledException)
0 commit comments