@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.cjs
CHANGED
|
@@ -10355,6 +10355,7 @@ const _MutationRateLimiter = class _MutationRateLimiter2 {
|
|
|
10355
10355
|
debugLog(
|
|
10356
10356
|
`MutationRateLimiter, detected global storm over. Total mutations stormed: ${this.mutTracker.muts}`
|
|
10357
10357
|
);
|
|
10358
|
+
this.reset();
|
|
10358
10359
|
return false;
|
|
10359
10360
|
}
|
|
10360
10361
|
this.mutTracker.ts = now;
|
|
@@ -10367,7 +10368,6 @@ const _MutationRateLimiter = class _MutationRateLimiter2 {
|
|
|
10367
10368
|
this.mutTracker.muts += muts;
|
|
10368
10369
|
if (this.mutTracker.muts >= this.limit) {
|
|
10369
10370
|
this.inGlobalStorm = true;
|
|
10370
|
-
this.reset();
|
|
10371
10371
|
debugLog(`MutationRateLimiter, detected global rolling storm`);
|
|
10372
10372
|
return true;
|
|
10373
10373
|
}
|