Skip to content

Commit 682054e

Browse files
committed
500 item batch size)
1 parent 4f68a51 commit 682054e

File tree

1 file changed

+2
-3
lines changed
  • features/dd-sdk-android-flags/src/main/kotlin/com/datadog/android/flags/internal

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ internal class FlagsFeature(private val sdkCore: FeatureSdkCore, internal val fl
6464
// region Domain Objects
6565

6666
/**
67-
* This is the same as the default configuration except
68-
* that we limit to 50 items per batch, the same as the JS library does.
67+
* Uses the default storage configuration with standard batch size (500 items per batch).
6968
*/
7069
override val storageConfiguration =
7170
FeatureStorageConfiguration.DEFAULT.copy(
@@ -211,7 +210,7 @@ internal class FlagsFeature(private val sdkCore: FeatureSdkCore, internal val fl
211210
}
212211

213212
internal companion object {
214-
const val MAX_ITEMS_PER_BATCH = 50
213+
const val MAX_ITEMS_PER_BATCH = 500
215214
private const val LOG_TAG = "[Datadog Flags]"
216215
}
217216
}

0 commit comments

Comments
 (0)