Skip to content

Commit 65e8912

Browse files
committed
fix: tests execution
1 parent 15ecc67 commit 65e8912

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/RedisQueue.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,9 @@ export class RedisQueue extends EventEmitter<EventMap>
12561256

12571257
this.verbose(`Cleaning up keys matching ${ filter }`);
12581258

1259-
const clients = await this.writer.client('LIST') as string || '';
1259+
const clients: string = (await this.writer.client(
1260+
'LIST',
1261+
) as string).toString() || '';
12601262
const connectedKeys = (clients.match(RX_CLIENT_NAME) || [])
12611263
.filter((name: string) =>
12621264
RX_CLIENT_TEST.test(name) && filter.test(name),

0 commit comments

Comments
 (0)