You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling a node-redis function with an invalid argument count like in the below example causes all following calls to stall.
reproduction code:
(async()=>{const{ createClient }=require('redis');constredis=createClient();awaitredis.connect();awaitredis.hmGet("bla").catch((e)=>console.log(e));console.log("after hmGet");console.log(awaitredis.ping());//ping does NOT return in this exampleconsole.log("after ping");})();
Restarting the connection (redis.quit() redis.connect()) doesn't do anything either. 1
Environment:
Node.js Version: v16.13.2
Redis Server Version: 255.255.255
Node Redis Version: 4.0.2
Platform: Debian
The text was updated successfully, but these errors were encountered:
Calling a node-redis function with an invalid argument count like in the below example causes all following calls to stall.
reproduction code:
Restarting the connection (redis.quit() redis.connect()) doesn't do anything either. 1
Environment:
The text was updated successfully, but these errors were encountered: