diff --git a/cluster_library.c b/cluster_library.c index cc1ef16ebb..364f7d4b69 100644 --- a/cluster_library.c +++ b/cluster_library.c @@ -1808,6 +1808,8 @@ PHP_REDIS_API void cluster_type_resp(INTERNAL_FUNCTION_PARAMETERS, redisCluster CLUSTER_RETURN_LONG(c, REDIS_HASH); } else if (strncmp(c->line_reply, "zset", 4) == 0) { CLUSTER_RETURN_LONG(c, REDIS_ZSET); + } else if (strncmp(c->line_reply, "+stream", 7) == 0) { + CLUSTER_RETURN_LONG(c, REDIS_STREAM); } else { CLUSTER_RETURN_LONG(c, REDIS_NOT_FOUND); }