mirror of https://mirror.osredm.com/root/redis.git
Added history for cluster-slots changes for hostnames(#10216)
* The first field was previously only an IP address, it can now be a hostname or NULL. * There is now a fourth field, which has more information.
This commit is contained in:
parent
8b1cda7568
commit
d0bc4fff18
|
@ -624,6 +624,7 @@ struct redisCommandArg CLUSTER_SLAVES_Args[] = {
|
||||||
/* CLUSTER SLOTS history */
|
/* CLUSTER SLOTS history */
|
||||||
commandHistory CLUSTER_SLOTS_History[] = {
|
commandHistory CLUSTER_SLOTS_History[] = {
|
||||||
{"4.0.0","Added node IDs."},
|
{"4.0.0","Added node IDs."},
|
||||||
|
{"7.0.0","Added additional networking metadata and added support for hostnames and unknown endpoints."},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,10 @@
|
||||||
[
|
[
|
||||||
"4.0.0",
|
"4.0.0",
|
||||||
"Added node IDs."
|
"Added node IDs."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"7.0.0",
|
||||||
|
"Added additional networking metadata and added support for hostnames and unknown endpoints."
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"command_flags": [
|
"command_flags": [
|
||||||
|
|
Loading…
Reference in New Issue