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
The transactions test has:
client.rpush("txn1", 3, self.callback);
But doing a similar thing on the last command in my transaction never calls the callback:
redis.transaction(function(){
... redis commands manipulating set without callbacks ...
redis.zcard(set, callback); // callback is never called
});
The text was updated successfully, but these errors were encountered:
The transactions test has:
client.rpush("txn1", 3, self.callback);
But doing a similar thing on the last command in my transaction never calls the callback:
redis.transaction(function(){
... redis commands manipulating set without callbacks ...
redis.zcard(set, callback); // callback is never called
});
The text was updated successfully, but these errors were encountered: