We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b377afd commit 2e36ffdCopy full SHA for 2e36ffd
1 file changed
src/subcommand/execute.ts
@@ -197,7 +197,8 @@ export async function start(argv:Args) {
197
// queue size is 0, but there are unresolved tasks --> hit the rate limit, should stop reporting
198
// queue size is 0, there are no unresolved tasks --> queue is completed, should stop reporting
199
const queueState = taskQueue.getState();
200
- if (queueState.size == 0) {
+ if (queueState.size == 0 && queueState.pending == 0) {
201
+ logger.info("Queue is empty. Stopping regular reporting.");
202
break;
203
}
204
0 commit comments