1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-03 04:01:40 +03:00

Fix send_command working with hooked internal functions

This commit is contained in:
Ruben Bridgewater
2016-03-31 19:17:29 +02:00
parent 3c2e6b4a83
commit 861749f4d6
5 changed files with 21 additions and 25 deletions

View File

@ -42,7 +42,7 @@ commands.list.forEach(function (command) {
arr[i] = arguments[i];
}
}
return this.send_command(command, arr, callback);
return this.internal_send_command(command, arr, callback);
};
}