-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
Description
Description
"@redis/client": "5.6.1" has weird console.logs in SCAN command.
node_modules/@redis/client/dist/lib/commands/SCAN.js
- console.log in parseCommand:
parseCommand(parser, cursor, options) {
parser.push('SCAN');
parseScanArguments(parser, cursor, options);
if (options?.TYPE) {
parser.push('TYPE', options.TYPE);
}
>>> console.log('eeeeeeeeee', parser.redisArgs);
},
- console.log in transformReply:
transformReply([cursor, keys]) {
>>> console.log(cursor, keys);
return {
cursor,
keys
};
}
Node.js Version
v22.17.1
Redis Server Version
7.0.15
Node Redis Version
5.6.1
Platform
Linux