Skip to content

Commit 27c0028

Browse files
committed
Address PR feedback
1 parent 06c7439 commit 27c0028

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ModelContextProtocol.AspNetCore/HttpServerTransportOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ public class HttpServerTransportOptions
3434
/// The maximum number of idle sessions to track. This is used to limit the number of sessions that can be idle at once.
3535
/// Past this limit, the server will log a critical error and terminate the oldest idle sessions even if they have not reached
3636
/// their <see cref="IdleTimeout"/> until the idle session count is below this limit. Clients that keep their session open by
37-
/// keeping a GET request open will not count towards this limit. The default value is set to 10,000 sessions.
37+
/// keeping a GET request open will not count towards this limit. The default value is set to 100,000 sessions.
3838
/// </summary>
39-
public int MaxIdleSessionCount { get; set; } = 10_000;
39+
public int MaxIdleSessionCount { get; set; } = 100_000;
4040

4141
/// <summary>
4242
/// Used for testing the <see cref="IdleTimeout"/>.

0 commit comments

Comments
 (0)