Skip to content

Commit

Permalink
change MaxNumConsecutiveFetchErrors to 15 ; this also fixes the test ;
Browse files Browse the repository at this point in the history
  • Loading branch information
in0finite committed Oct 20, 2024
1 parent 65ec145 commit 517d330
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DemoFile/HttpBroadcastReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public HttpBroadcastReader(DemoParser<TGameParser> demo, HttpClient httpClient)

public int FetchDelayIntervalMs { get; init; } = 1000;

public int MaxNumConsecutiveFetchErrors { get; init; } = 10;
public int MaxNumConsecutiveFetchErrors { get; init; } = 15;
private int _numConsecutiveFetchErrors = 0;

private async Task FetchWorkerAsync(string urlPrefix, int startFragment, CancellationToken cancellationToken)
Expand Down

0 comments on commit 517d330

Please sign in to comment.