Skip to content

Commit

Permalink
feat: improved streaming behavior by decreasing maximum retry interval (
Browse files Browse the repository at this point in the history
  • Loading branch information
tanderson-ld authored May 13, 2024
1 parent 364e336 commit 81f1912
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ final class StreamingDataSource implements DataSource {
private static final String PATCH = "patch";
private static final String DELETE = "delete";

private static final long MAX_RECONNECT_TIME_MS = 3_600_000; // 1 hour
private static final long MAX_RECONNECT_TIME_MS = 300_000; // 5 minutes

private static final long READ_TIMEOUT_MS = 300_000;
// 5 minutes is the standard read timeout used for all LaunchDarkly stream connections, based on
Expand Down

0 comments on commit 81f1912

Please sign in to comment.