Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
qtomlinson committed Jul 5, 2022
1 parent 9013176 commit 0dcb92f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ghcrawler/providers/queuing/scopedQueueSets.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ScopedQueueSets {
async repush(original, newRequest) {
//Always retry on the global queue
const queue = original._retryQueue ? this.getQueue(original._retryQueue, 'global') : original._originQueue
if (queue != original._originQueue) await original._originQueue.done(original)
if (queue !== original._originQueue) await original._originQueue.done(original)
return queue.push(newRequest)
}

Expand Down

0 comments on commit 0dcb92f

Please # to comment.