@statezero/core 0.1.72 → 0.1.73
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/syncEngine/sync.js +1 -1
- package/package.json +1 -1
package/dist/syncEngine/sync.js
CHANGED
|
@@ -87,7 +87,7 @@ export class SyncManager {
|
|
|
87
87
|
this.maxWaitMs = 2000; // Maximum time to hold events
|
|
88
88
|
this.batchStartTime = null;
|
|
89
89
|
// SyncQueue
|
|
90
|
-
this.syncQueue = new PQueue({ concurrency:
|
|
90
|
+
this.syncQueue = new PQueue({ concurrency: 1 });
|
|
91
91
|
}
|
|
92
92
|
withTimeout(promise, ms) {
|
|
93
93
|
// If no timeout specified, use 2x the periodic sync interval, or 30s as fallback
|
package/package.json
CHANGED