Skip to content
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
6 changes: 5 additions & 1 deletion posthog/src/main/java/com/posthog/PostHogConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,11 @@ public open class PostHogConfig(
public var maxBatchSize: Int = DEFAULT_MAX_BATCH_SIZE,
/**
* Maximum number of retries for push subscription registration failures.
* Durable ingestion queues retain retryable records and are bounded by their queue size.
*
* This limit does not apply to event, replay, or log ingestion. Retryable ingestion
* failures retain queued records for later flush triggers, subject to backoff.
* Use [maxQueueSize] for events and replay, and [PostHogLogsConfig.maxBufferSize] for logs.
*
* Defaults to 3
*/
public var maxRetries: Int = 3,
Expand Down
Loading