From 7a7e0f4eb876ed59fa8cee82f3014799877d0cc8 Mon Sep 17 00:00:00 2001 From: Abhinav Gupta Date: Thu, 12 Nov 2020 13:29:32 +0530 Subject: [PATCH] Set requestBatchSize to 1 --- packages/contentstack-bulk-publish/src/util/queue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/contentstack-bulk-publish/src/util/queue.js b/packages/contentstack-bulk-publish/src/util/queue.js index 4dee6e929b..bd83ca6904 100644 --- a/packages/contentstack-bulk-publish/src/util/queue.js +++ b/packages/contentstack-bulk-publish/src/util/queue.js @@ -8,7 +8,7 @@ class Queue extends EventEmitter { this.store = []; this.config = {}; this.delay = 1 - this.requestBatchSize = 2 + this.requestBatchSize = 1 this.on('dequeue', this.check); }