redis/src/commands/cluster-forget.json
debing.sun 658424fc83
Revert "Update history for ban-list propagation (#13749)" (#13827)
As discussed in
https://github.com/redis/redis/pull/13749#issuecomment-2673612941.
After #10398 we should record only the arguments and output changes in
the command history, while placing all others in the redis-doc, so
revert #13749.
2025-02-24 17:40:25 +08:00

25 lines
562 B
JSON

{
"FORGET": {
"summary": "Removes a node from the nodes table.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
"arity": 3,
"container": "CLUSTER",
"function": "clusterCommand",
"command_flags": [
"NO_ASYNC_LOADING",
"ADMIN",
"STALE"
],
"arguments": [
{
"name": "node-id",
"type": "string"
}
],
"reply_schema": {
"const": "OK"
}
}
}