Skip to content

Commit 80269cb

Browse files
author
rhamlett_microsoft
committed
Set request timeout to 30 seconds to match display and provide
a more realistic user experience.
1 parent a673cb4 commit 80269cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PerfProblemSimulator/Services/LatencyProbeService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ public class LatencyProbeService : IHostedService, IDisposable
6363
/// <summary>
6464
/// Request timeout in milliseconds. If the probe takes longer than this,
6565
/// it's recorded as a timeout with this value as the latency.
66-
/// Increased to 70s to match CLR profile observations during severe starvation.
66+
/// Set to 30s to match the UI threshold for timeout detection.
6767
/// </summary>
68-
private const int RequestTimeoutMs = 70000;
68+
private const int RequestTimeoutMs = 30000;
6969

7070
/// <summary>
7171
/// Initializes a new instance of the <see cref="LatencyProbeService"/> class.

0 commit comments

Comments
 (0)