Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improved streaming behavior by decreasing maximum retry interval #268

Merged
merged 1 commit into from
May 13, 2024
Merged
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 @@ -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