Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -113,14 +113,15 @@ public required Uri Endpoint
/// Gets or sets the maximum number of consecutive reconnection attempts when an SSE stream is disconnected.
/// </summary>
/// <value>
/// The maximum number of reconnection attempts. The default is 2.
/// The maximum number of reconnection attempts. The default is 5.
/// </value>
/// <remarks>
/// When an SSE stream is disconnected (e.g., due to a network issue), the client will attempt to
/// reconnect using the Last-Event-ID header to resume from where it left off. This property controls
/// how many reconnection attempts are made before giving up.
/// how many consecutive reconnection attempts are made before giving up. The counter resets to zero
/// on each successful stream read, so this value only limits consecutive failures.
/// </remarks>
public int MaxReconnectionAttempts { get; set; } = 2;
public int MaxReconnectionAttempts { get; set; } = 5;

/// <summary>
/// Gets or sets the default interval at which the client attempts reconnection after an SSE stream is disconnected.
Expand Down