Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-06-12 13:50:50 +0300
committerPavlo Yatsukhnenko <yatsukhnenko@gmail.com>2019-06-12 13:50:50 +0300
commitac9dca0a925de9cd87268c1e4629893cc436e50c (patch)
tree1694310f98a5d10b680b369abb601ff0fba3b65b /redis_cluster.c
parent4852a5106a10d52dee8b570a9736aa37cf606661 (diff)
Fix xInfo ro RedisCluster
Diffstat (limited to 'redis_cluster.c')
-rw-r--r--redis_cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_cluster.c b/redis_cluster.c
index 0342096c..591138f6 100644
--- a/redis_cluster.c
+++ b/redis_cluster.c
@@ -3095,7 +3095,7 @@ PHP_METHOD(RedisCluster, xgroup) {
/* {{{ proto variant RedisCluster::xinfo(string op, [string arg1, string arg2]); */
PHP_METHOD(RedisCluster, xinfo) {
- CLUSTER_PROCESS_CMD(xinfo, cluster_variant_resp, 0);
+ CLUSTER_PROCESS_CMD(xinfo, cluster_xinfo_resp, 0);
}
/* {{{ proto string RedisCluster::xlen(string key) }}} */