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 748e155 commit 03a6922Copy full SHA for 03a6922
lib/extendedApi.js
@@ -11,10 +11,10 @@ All documented and exposed API belongs in here
11
12
RedisClient.prototype.send_command_buf = function (command, args, callback) {
13
try {
14
- this.next_command_use_buf = true;
+ this.next_command_ret_buf = true;
15
this.send_command(command, args, callback);
16
} finally {
17
- this.next_command_use_buf = false; // Set to false even if internal_send_command has not been called or throw
+ this.next_command_ret_buf = false; // Set to false even if internal_send_command has not been called or throw
18
}
19
};
20
0 commit comments