We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecd7b76 commit 6eb6e71Copy full SHA for 6eb6e71
src/RedisQueue.ts
@@ -1105,7 +1105,7 @@ export class RedisQueue extends EventEmitter<EventMap>
1105
(this.options.cleanupFilter || '*').replace(/\*/g, '.*'),
1106
'i',
1107
);
1108
- const clients = await this.writer.client('LIST') as string;
+ const clients = await this.writer.client('LIST') as string || '';
1109
const connectedKeys = (clients.match(RX_CLIENT_NAME) || [])
1110
.filter((name: string) =>
1111
RX_CLIENT_TEST.test(name) && filter.test(name),
0 commit comments