@glimt/record 0.0.68 → 0.0.69
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 +1 -1
- package/dist/record.cjs.map +1 -1
- package/dist/record.js +1 -1
- package/dist/record.js.map +1 -1
- package/dist/record.umd.cjs +1 -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.umd.cjs
CHANGED
|
@@ -10397,6 +10397,7 @@ const _MutationRateLimiter = class _MutationRateLimiter2 {
|
|
|
10397
10397
|
debugLog(
|
|
10398
10398
|
`MutationRateLimiter, detected global storm over. Total mutations stormed: ${this.mutTracker.muts}`
|
|
10399
10399
|
);
|
|
10400
|
+
this.reset();
|
|
10400
10401
|
return false;
|
|
10401
10402
|
}
|
|
10402
10403
|
this.mutTracker.ts = now;
|
|
@@ -10409,7 +10410,6 @@ const _MutationRateLimiter = class _MutationRateLimiter2 {
|
|
|
10409
10410
|
this.mutTracker.muts += muts;
|
|
10410
10411
|
if (this.mutTracker.muts >= this.limit) {
|
|
10411
10412
|
this.inGlobalStorm = true;
|
|
10412
|
-
this.reset();
|
|
10413
10413
|
debugLog(`MutationRateLimiter, detected global rolling storm`);
|
|
10414
10414
|
return true;
|
|
10415
10415
|
}
|