@glimt/record 0.0.62 → 0.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/record.cjs +2 -1
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +2 -1
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +2 -1
- package/dist/record.umd.cjs.map +2 -2
- package/dist/record.umd.min.cjs +1 -1
- package/dist/record.umd.min.cjs.map +2 -2
- package/package.json +1 -1
package/dist/record.cjs
CHANGED
|
@@ -10466,7 +10466,7 @@ class MutationBuffer {
|
|
|
10466
10466
|
__publicField(this, "stormBatches", []);
|
|
10467
10467
|
__publicField(this, "stormInfo", null);
|
|
10468
10468
|
__publicField(this, "stormSettings", {
|
|
10469
|
-
batchSize:
|
|
10469
|
+
batchSize: 50,
|
|
10470
10470
|
//was 300
|
|
10471
10471
|
timeout: 30,
|
|
10472
10472
|
//was 50
|
|
@@ -10538,6 +10538,7 @@ class MutationBuffer {
|
|
|
10538
10538
|
}
|
|
10539
10539
|
});
|
|
10540
10540
|
__publicField(this, "processInternalMutations", (muts, overrideStorm = false) => {
|
|
10541
|
+
console.log("muts", muts.length);
|
|
10541
10542
|
if (!overrideStorm && (this.stormInfo != null || muts.length >= this.stormSettings.batchSize)) {
|
|
10542
10543
|
this.handleStormMutations(muts);
|
|
10543
10544
|
return;
|