Skip to content

Commit 44e34f0

Browse files
authored
Change the default feedback provider timeout from 300ms to 1000ms (#25910)
1 parent 16aeaba commit 44e34f0

File tree

1 file changed

+1
-1
lines changed
  • src/System.Management.Automation/engine/Subsystem/FeedbackSubsystem

1 file changed

+1
-1
lines changed

src/System.Management.Automation/engine/Subsystem/FeedbackSubsystem/FeedbackHub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public static class FeedbackHub
5252
/// </summary>
5353
public static List<FeedbackResult>? GetFeedback(Runspace runspace)
5454
{
55-
return GetFeedback(runspace, millisecondsTimeout: 300);
55+
return GetFeedback(runspace, millisecondsTimeout: 1000);
5656
}
5757

5858
/// <summary>

0 commit comments

Comments
 (0)