Skip to content

Commit 00ed97c

Browse files
author
naman-contentstack
committed
fix linting
1 parent 48662dc commit 00ed97c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/core/concurrency-queue.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,12 +186,12 @@ export function ConcurrencyQueue ({ axios, config }) {
186186
const shift = async () => {
187187
if (this.queue.length && !this.paused) {
188188
const queueItem = this.queue.shift()
189-
189+
190190
// Add configurable delay before making the request if specified
191191
if (this.config.delayMs && this.config.delayMs > 0) {
192192
await new Promise(resolve => setTimeout(resolve, this.config.delayMs))
193193
}
194-
194+
195195
queueItem.resolve(queueItem.request)
196196
this.running.push(queueItem)
197197
}

0 commit comments

Comments
 (0)