We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17a7fc9 commit 72f0234Copy full SHA for 72f0234
.changeset/dull-poets-repeat.md
@@ -0,0 +1,5 @@
1
+---
2
+'@segment/analytics-signals': minor
3
4
+
5
+Update max buffer size to 50
packages/signals/signals/src/core/buffer/index.ts
@@ -31,7 +31,7 @@ export class SignalStore implements SignalPersistentStorage {
31
}
32
33
constructor(settings: { maxBufferSize?: number } = {}) {
34
- this.maxBufferSize = settings.maxBufferSize ?? 100 // TODO: increase this number after development
+ this.maxBufferSize = settings.maxBufferSize ?? 50
35
this.signalStore = this.createSignalStore()
36
void this.initializeSignalCount()
37
0 commit comments