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 77ecdf2 commit 65eb69aCopy full SHA for 65eb69a
packages/client/lib/client/legacy-mode.ts
@@ -57,7 +57,7 @@ export class RedisLegacyClient {
57
58
static #createCommand(name: string, command: Command, resp: RespVersions) {
59
const transformReply = RedisLegacyClient.getTransformReply(command, resp);
60
- return async function (this: RedisLegacyClient, ...args: LegacyCommandArguments) {
+ return function (this: RedisLegacyClient, ...args: LegacyCommandArguments) {
61
const redisArgs = [name],
62
callback = RedisLegacyClient.#transformArguments(redisArgs, args),
63
promise = this.#client.sendCommand(redisArgs);
0 commit comments