Skip to content

Commit 62c8965

Browse files
committed
fix(flags): increase exposure cache capacity
1 parent a459ddf commit 62c8965

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

features/dd-sdk-android-flags/src/main/kotlin/com/datadog/android/flags/internal/ExposureEventsProcessor.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ internal class ExposureEventsProcessor(private val writer: RecordWriter, private
8989
}
9090

9191
companion object {
92-
// Maximum cache size in bytes (4MB)
93-
private const val MAX_CACHE_SIZE_BYTES = 4 * 1024 * 1024 // 4MB
92+
// Maximum cache size in bytes (8MB)
93+
private const val MAX_CACHE_SIZE_BYTES = 8 * 1024 * 1024 // 8MB
9494

9595
// Memory overhead constants for size calculation
9696
private const val OBJECT_OVERHEAD = 16 // bytes for object header

0 commit comments

Comments
 (0)