]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
Better MONITOR output, now includes client ip:port or the lua string if the command...
[redis.git] / src / redis.c
index 452c3bb7560041d68f9ff6e72ee9b21f2e30dfe3..6d5522e824c93b0ada93e823f7a3d80a174ff943 100644 (file)
@@ -1248,7 +1248,7 @@ void call(redisClient *c, int flags) {
     /* Sent the command to clients in MONITOR mode, only if the commands are
      * not geneated from reading an AOF. */
     if (listLength(server.monitors) && !server.loading)
-        replicationFeedMonitors(server.monitors,c->db->id,c->argv,c->argc);
+        replicationFeedMonitors(c,server.monitors,c->db->id,c->argv,c->argc);
 
     /* Call the command. */
     redisOpArrayInit(&server.also_propagate);