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 15ecc67 commit 65e8912Copy full SHA for 65e8912
src/RedisQueue.ts
@@ -1256,7 +1256,9 @@ export class RedisQueue extends EventEmitter<EventMap>
1256
1257
this.verbose(`Cleaning up keys matching ${ filter }`);
1258
1259
- const clients = await this.writer.client('LIST') as string || '';
+ const clients: string = (await this.writer.client(
1260
+ 'LIST',
1261
+ ) as string).toString() || '';
1262
const connectedKeys = (clients.match(RX_CLIENT_NAME) || [])
1263
.filter((name: string) =>
1264
RX_CLIENT_TEST.test(name) && filter.test(name),
0 commit comments